Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

DART Test Suite

For comprehensive documentation on the DART test suite, including:

  • Test organization and structure
  • Unit vs Integration test guidelines
  • Adding new tests
  • Running and debugging tests
  • Best practices

Please see: docs/onboarding/testing.md

Quick Reference

Run all tests:

cd build
ctest

Run tests by category:

ctest -L integration
ctest -L unit
ctest -L regression

Run a specific test:

ctest -R test_Collision

Run tests in parallel:

ctest -j8  # Run 8 tests in parallel