0
votes
Unit Testing Frameworks for C
In case you are targeting Win32 platforms or NT kernel mode, you should have a look at cfix.
…
0
votes
Unit Testing C Code
In case you are targeting Win32 platforms or NT kernel mode, you should have a look at cfix.
…
0
votes
How to test C Code
You may want to have a look at cfix -- it is a unit testing framework specialized for Win32 platforms and NT kernel mode. Supports both C and C++. …
0
votes
Unit testing for C++ code - Tools and methodology
Have a look at cfix (http://www.cfix-testing.org), it's specialized for Windows C/C++ development and supports both user mode and kernel mod …
0
votes
Seeking suggestions for Unit Testing C++ app spread over several dlls
In general, thoroughly testing the public interface of a DLL should be sufficient and, as Pete indicated, should indeed exercise all code paths.
Regarding Neils' answer, choosing a test fra …
1
vote
Why do COM events cease to work when we use unit testing with Microsoft Visual Studio 2008?
Without further details, this is hard to diagnose. However, it is possible that this is actually an apartment issue: IIRC, VS runs tests in an STA. If your application uses an MTA to run the same c …
0
votes
