Search Results

0
votes

information on TAP and TDD for ‘C’

I using CUnitWin32 as my testing framework. The front-page highlights the positives …
0
votes

Testing Frameworks for C

You certainly can do unit testing in C (I do). The framework I use (for the Windows platform) is CunitWin32 …
0
votes

How do you integrate a TDD approach with VisualStudio?

Have a look at CUnitWin32. There's an example included as well. …
0
votes

Building and running C++ unit tests in Visual Studio (TDD)

Don't know if you're still looking for a solution. But here's an idea: You can keep all your tests in one library and write an application that spawns itself and executes each test. This wa …