views:

110

answers:

4

The framework should be as portable as possible. Thank you!

Later Edit: If possible I am looking for something similar (as approach) with Java's Junit.

+3  A: 

Here is a nice list of unit test frameworks for C.

Bryan Denny
Do you have experience with any of them.Any suggestions ?
Andrei Ciobanu
+3  A: 

Personally I'm using CuTest with a few minor modifications. It's simple but pretty good for many needs.

Eli Bendersky
+1  A: 

Please check the below link. It might be helpful.

http://code.google.com/p/test-dept/wiki/TestDept

Jay
+1  A: 

You might also look at ATF ( http://www.netbsd.org/~jmmv/atf/ ), which is very portable, and easy to use. For example, it is used as part of the automated regression testing of the netbsd OS. It provides both C and C++ interfaces.

tonio