Question

Visual Studio 2010 offers a lot of comfortable tools for unit testing via its built in test runner. Unfortunately we can't use MSTest for our unmanaged c++ codebase. Is it possible to switch from MSTest to e.g. Google.Test and have it integrated with the built in Visual Studio test runner?

Thanks in advance!

Was it helpful?

Solution

I have not seen anyway to integrate another unit testing framework into the VS test runner.

You might look at some VS add-in test runners, testdriven.net and gallio are two.

Kindness,

Dan

OTHER TIPS

It's possible to use gtest (google test) in VS2010 and have it integrated with the IDE thanks to the extension: GoogleTestAddin

You can be interested by this similar thread: Viewing Google Test results within Visual Studio

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top