Minitest: Minimal unit test library for C++
Minitest is a library to help with unit testing. It provides very small set of features (one macro, two functions):
* macro (MINITEST) to define a test
* execute all tests, in random order (to uncover possible dependencies between the tests)
* execute only tests from last modified source files (to shorten the edit – compile – test cycle)
link






