0
votes
1answer
81 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
0
votes
1
vote
Unit testing for C++ code - Tools and methodology
Have a look at CUnitWin32. It's written for MS Visual C. It includes an example.
…
0
votes
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 …
-1
votes
Setting up a mock interface in C++
I've used a relatively hacky, non-portable method for mocking functions, in WIN32 environment (I think it's 32 bit only, but not sure). here it is:
#define INJECTED_BYTES 5
static …
5
votes
Unit test compile-time error.
You can do it using make. Each test will be a code snippet. Here's a working example with 2 tests for VC++. (I've used 2 batch files for pass test and fail test). I'm using GNU make here.
M …
1
vote
Where can I find standard BNF or YACC grammar for C++ language?
I found this one recently. I haven't tried it out, so am not sure if it works. Could you give more info on the tool yo …
