Python based Unit test Frameworks like "nose" have a lot of rich features, i wonder if we can leverage them to test C Code.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Of course you can.... but you'll have to write a binding to call your C code in python (with ctypes for example), and write the tests in python (this is really possible and an easy way to do smart tests) Example :
foolib.c
*foolib_test.py*
And then, when running this test with nose you should have a nice test of your C code :) |
|||||||||||
|
