Skip to main content
Unit test framework for C programs on Linux
Last post 02:09 pm January 14, 2016
by Bart Clephas
1
reply
05:36 am June 19, 2015
I am new to Agile and my apologies if this is a trivial question.
What are the best unit test framework for programs in C?(OS : CentOS)
02:09 pm January 14, 2016
A bit late perhaps, but Check is an often used framework or else see C++ frameworks like Google Test. You have to do some additional work to cross the bridge between C and C++ but overall Google Tests works perfectly (unit tests in C++ and production code in C).