Search Results

0
votes
2answers
108 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

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 …
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 …