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 …
1
vote
Unit Testing Frameworks for C
I write embedded software using C and I decided to write my own framework. It's very simple and written for MS Visual Studio. It's easily ported to other platforms.
…
0
votes
How to test C Code
If you're using Windows as your dev environment, CUnitWin32 might serve your purpose
…
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
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 …
2
votes
How to test a static function
static functions are essentially helper functions to the public (i.e. exposed) functions. So IMO, your unit tests should call the public interface with inputs that exercise all the paths in the sta …
0
votes
cross platform unit testing in C
Hi, I use my own unit testing framework CUnitWin32 for embedded C stuff. My host dev environment is Win32 so the framework that is …
0
votes
