Search Results

0
votes

Unit Testing C Code

If you're still on the hunt for test frameworks, CUnitWin32 is one for the Win32/NT platform. This solves one fundamental p …
0
votes

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

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