One thing I like about Visual Studio Unit Testing Framework is that all the unit testing is done from withing the IDE, from class definition to running the test having a graphical green/red bar giving test results.

I'm using both CppUnit and Google Test to test my applications. I quite succeeded integrating both in Visual Studio IDE, given a text output.

I'm wondering if anybody build a Visual Studio Addin allowing to both run the test from within DevStudio and having a graphical test runner to give the feedback?

Thanks,

Nic

link|improve this question

feedback

2 Answers

I have yet to find an integration for either project. What some people are doing at my company is to write their tests in c++/cli that can be run with the mstest. It is a little gross, but it is a solution.

link|improve this answer
feedback
up vote 0 down vote accepted

I have finally found an interesting way to do what I was looking for.

I created a project of the kind "VisualStudioPackage" (VsPackage) that is used to add custom functionality to the development environment.

In that project, I wrapped the CppUnit test runner and add a custom test listener that is used to refresh the stats in a Window (provided in by the VsPackage) in DevStudio.

I also added a custom command to start unit testing my project.

link|improve this answer
Sounds very good, do you have it available for other to use? Thanks! – Uri Cohen Jun 23 '11 at 23:18
I would appreciate it very much! My address in gmail is just my name. – Uri Cohen Jul 5 '11 at 21:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.