/ccatch

Unit Testing Framework for pure C

Primary LanguageCMIT LicenseMIT

ccatch

Build Status

Unit Testing Framework for pure C inspired by Catch.

Version 0.1.0

Long way to test functionality:

$ mkdir build
$ cd build
build/ $ cmake ..
build/ $ cmake --build . -- -j
build/ $ cmake --build . -- test

Short way to test functionality:

$ gcc -Iinclude/ -o ccatch_test tests/*.c
$ ./ccatch_test