Search Results

0
votes
1answer
87 views

How to implement dependency checking for C/C++ sources

I started adding support for a 3rd party toolchain (IAR Compiler) to Visual Studio 2005. So far I've managed to implement the required msbuild tasks (Compile, Link and Assemble) and the Vis …
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

How to set up unit testing for Visual Studio C++

Have a look at CUnitWin32. It includes an example. …
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 …