DART testing patterns - unit tests, integration tests, CI validation
Installation
$skills install @dartsim/dart-test
Claude Code
Cursor
Copilot
Codex
Antigravity
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: dart-test description: DART testing patterns - unit tests, integration tests, CI validation
DART Testing
Load this skill when writing or debugging tests.
Quick Commands
pixi run test # Quick test run
pixi run test-all # Full validation
ctest -R <pattern> # Run specific tests
ctest -V # Verbose output
Full Documentation
For complete testing guide: docs/onboarding/testing.md
For CI/CD troubleshooting: docs/onboarding/ci-cd.md
Test Organization
- Unit tests:
tests/unit/ - Integration tests:
tests/integration/ - Regression tests: Near the code they test
Writing Tests
- Follow existing patterns in the test directory
- Use GoogleTest framework
- Name tests descriptively:
TEST(ClassName, MethodName_Condition_ExpectedResult)
CI Validation
Before submitting PR:
pixi run lint # Must pass
pixi run test-all # Must pass
Debugging Test Failures
# Run single test with verbose output
ctest -R TestName -V
# Get CI logs
gh run view <RUN_ID> --log-failed
More by dartsim
View alldart-contribute
1,043DART contribution workflow - branching, PRs, code review, dual-PR for bugfixes
dart-build
1,043DART build system knowledge - CMake, pixi, dependencies, troubleshooting
dart-build
1,043DART build system knowledge - CMake, pixi, dependencies, troubleshooting
dart-contribute
1,043DART contribution workflow - branching, PRs, code review, dual-PR for bugfixes
