Unit testing MFC with MSTest
6 May, 2009 § 20 Comments
Visual Studio 2008 offers the built in ability to write unit tests in C# by creating a Test Project. This same feature applies to managed C++, otherwise known as C++/CLI. If you are working on a project in MFC and would like to get the same unit test integration that is built directly in to Visual Studio, there is a way. Here are the steps you will have to follow:
- Create a C++ Test project within your solution.
- Open up the Properties of the project and change the Common Language Runtime support from /clr:safe to /clr. This will allow you to execute code from both C++/CLI and simple C++.
- Set the project to link to MFC using a shared DLL. You cannot compile with both /clr and statically linking to MFC.
- Edit the test project’s dependencies and add a dependency on the MFC project that you would like to unit test.
You should be all good here, except for one large gotcha. The unit test project will have its own instance of CWinApp declared. If the MFC project that you would like to test against also has its own instance of CWinApp, then everything will get confused and the tests won’t start. To solve this, you will have to create a separate MFC DLL project and move your code to this project. Your test project should now have a dependency on this new MFC DLL project, and not your previous one. If you would still like your application to produce a single executable, just make sure that the previous project statically links against the MFC DLL that you have just created.
Let me know if you have any questions. I’ve spent the last couple days getting this scenario to work.
(I’m using GoogleMock with my unit tests, and I think that the combination of MSTest and GoogleMock is perfect. The integration with Visual Studio that MSTest provides, and the ease to make mocks with GoogleMock makes writing C++ unit tests a walk in the park. I should be putting up a simple tutorial on using GoogleMock in the future.)
these classes are user defined and all these classes written using native C++.
[…] Unit testing MFC with MSTest May 2009 8 comments 2 […]
Hello could you post a sample project for this.
Hi Mark, thanks for visiting! I’ve tried putting together a sample project, but don’t have access to my main computer at the moment. I can try to upload the sample project within a week (hopefully).
Hi ,
I have to test a c++ class library (dll) functions for code coverage using visual studio. can you please help .
Thanks
Leela
Hello! Really appreciated your post. I am getting started right now to MS unit tests and i wanted to mix them with gMock, as you did. But…how to do it? Everything seems a bit tricky 😦 Could you please post a project, or a step by step guide on how to do it? It would be great. Thanks a lot
Daniele
[…] Unit Testing MFC with MS Test: https://msujaws.wordpress.com/2009/05/06/unit-testing-mfc-with-mstest/ […]
see here for step by step guide
http://codeketchup.blogspot.sg/2012/12/unit-test-for-unmanaged-c-in-visual.html