ctest/README.md

232 B

Testing library for C

Mostly specialized on unit tests library for improved testing experience

Example:

#include "ctest.h"
#include "funcs.h"
...
test(is_true(some_function()), "Function is true");
run_tests();
...