Migrating from MSTest to another unit test framework in VS 2010

Visual Studio 2010 offers many convenient tools for unit testing through the built-in test runner. Unfortunately, we cannot use MSTest for our unmanaged C ++ code base. Is it possible to switch from MSTest to, for example, Google.Test and integrate it with the test runner built into Visual Studio?

Thanks in advance!

+3
source share
2 answers

I have not yet seen to integrate another unit testing structure into the VS test runner.

VS-, testdriven.net gallio - .

,

Dan

+2

gtest (google test) VS2010 IDE : GoogleTestAddin

: Google Visual Studio

+1

Source: https://habr.com/ru/post/1717225/


All Articles