cmocka

Unit testing framework for C with mocking capabilities

brewmacoslinux
Try with needOr install directly
Source

About

Unit testing framework for C

Commands

cmocka

Examples

Create a basic test file using cmocka to test a simple function$ gcc -o test_example test_example.c -lcmocka
Run the compiled test suite to verify all unit tests pass$ ./test_example
Link cmocka in a CMake project by adding it to CMakeLists.txt$ find_package(cmocka REQUIRED) && target_link_libraries(my_test cmocka)