VS2010 gives good support for unit-testing C# code. With Moq, you are all set and ready to write testable code. Doing the same for C++ can be a challenge. There are a lot of unit-test frameworks (http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C.2B.2B) and you can also make a test-project in VS2010 in managed C++ to test native code (http://blogs.msdn.com/b/jsocha/archive/2010/11/19/writing-unit-tests-in-visual-studio-for-native-c.aspx). I initially chose to use VS2010 for unit testing as I would get code-coverage results. The next question was how would I do mocking?
You cannot go far in unit-testing without a good mocking support. I tried to use GoogleMock but I could not get it to work in VS2010. The mocking is also not that easy as in Moq, as you have to write a class for every class you want to mock. I decided to look for some other mocking framework and after reading and testing a lot of them, I finally decided on HippoMocks (http://www.hippomocks.com/wiki/index.php/Main_Page)
Advantages of HippoMocks are:
- Only one header file
- Easy to write mocking object
- Good feature-set especially, mocking of C functions (http://www.hippomocks.com/wiki/index.php/What_can_be_mocked)
- Free
At this point, I have decided VS2010 testing system and HippoMocks. After much work, I came to know that HippoMocks does not work well with managed C++ code. Now I had two choices; One, choose another mocking framework that work with managed C++ code; Two, choose another test runner. There are a lot of test-runners available but the reason I wanted to use VS2010 testing system is that I can get code-coverage results. I decided to go for a new test-runner.My search led to WinUnit (http://winunit.codeplex.com/) which said that it can provide code-coverage results. I tried it out and it was perfect (almost). I was able to use HippoMocks and get code-coverage results right back in VS2010. The only shortcoming is that WinUnit relies on Visual Studio macros in which the complete path the WinUnit.exe is to be specified.
To run the project, you have to:
- Open "Macro Explorer" (Alt+F8)
-
Edit WinUnit->_Variables
- Change WinUnitPath, WinUnitIncludeDir and VSPerfToolsDir according to your environment
- Save the file (If the file give "access denied", check if WinUnit.vsmacros is editable)
- In Solution Navigator, Select SampleCppTestsWinUnit project
- Make sure you active solution platform is "Win32" (Use Configuration manager, if required)
- In Macro Explorer, run WinUnit->RunningTestsWithCodeCoverage->RunTestsInSelectedProjectWithCoverage
You would get the following result
Happy unit-testing in C++