I am new to C programming I have been programming in Java for a few years now.

I am trying to find a framework for unit testing a C program, preferable a cross platform framework.

Ideally the structure of which should be similar to JUnit I have found a list of frameworks at http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C and wanted to know if any of these are similar to JUnit or which you would recommend?

One that I found in another post (unit testing framework for C) called Check looks like it may be what I'm looking for however I can't find which platforms it runs on.

I use both a Mac and a Windows machine for development.

Thanks in advance

link|improve this question
Is your question therefore "what platform does Check run on"? – Oli Charlesworth Dec 17 '11 at 17:35
If you look at that list, there's a column labeled "xUnit" which a brief glance suggests means "JUnit-like". – Chris Dec 17 '11 at 17:36
Thanks for the help Chris – Dobbo1989 Dec 17 '11 at 17:37
feedback

2 Answers

up vote 1 down vote accepted

Maybe cunit is suitable for you. It is cross platform and easy to use. But, It may be too simple and limited.

It is quite good for testing simple functions. Not so good for testing big programs.

link|improve this answer
feedback

I've been happy with libtap. It is fairly low level, but I've found it easy to write test cases quickly and clearly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.