cxxtest

C++ unit testing framework with xUnit-style assertions and test organization

brewmacoslinux
Try with needOr install directly
Source

About

C++ unit testing framework similar to JUnit, CppUnit and xUnit

Commands

cxxtestgen

Examples

Generate test runner from test header file$ cxxtestgen --error-printer -o runner.cpp MyTests.h
Generate test runner with verbose output$ cxxtestgen --have-std --abort-on-fail -o runner.cpp tests/*.h
Create test runner with GUI output formatter$ cxxtestgen --gui=X11 -o runner.cpp MyTestSuite.h