I have a C library compiled with MinGW, Eclipse C project. Library consists of many modules, each module can be tested.

What is the best way (using MACROS or something) how to write tests for this library, compile it a run it in Eclipse/CDT IDE?

EDIT: I've seen that some people use

#ifdef TEST

int main(void)
{
   ...TEST LOGIC...
}
#endif

but don't know how to plug it into Eclipse.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I'd suggest to use CuTest with a Makefile.

link|improve this answer
feedback

Another test tool is C++ Test by Parasoft

Other tool can refer this link http://opensourcetesting.org/unit_c.php

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.