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 somethin开发者_如何学Pythong) 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.
I'd suggest to use CuTest with a Makefile.
精彩评论