What is the preferred unit testing tool for C development in Visual Studio?
views:
84answers:
3
+1
A:
A quick Google search reveals a few unit testing tools for C:
I doubt they are designed to work with Visual Studio specifically, although I'm certain you'd be able to use these tools anyways as Visual Studio has good support for 3rd party tools.
Charlie Salts
2009-11-19 14:59:37
A:
I like Google Test... It provides project files for Visual Studio
And you can use Google Mock framework
Sebastián
2009-11-19 15:04:26
Can cou write pure C (not C++) tests with Google Test?
EricSchaefer
2009-11-19 16:12:36
Not really, test files must be compiled as C++. But if you want to test pure C code you can do it from Google Test Framework
Sebastián
2009-11-19 16:44:38