MSTest in Visual Studio 2010 Express Editions

I am inclined to use MSTest as a unit testing system for a new project, but I am interested in disabling developers (perhaps even me in the future and / or in a particular environment) using Express versions of Visual Studio.

I know that MSTest was not available in VS2008 Express, but with the testing of pushing modules in Microsoft in recent years, I think they could add it to VS2010 Express. However, I could not find information about this in the list of Express functions, and I do not want to download and install express to check this.

So, is MSTest supported in Visual Studio 2010 Express?

+3
source share
1 answer

It does not appear in the list of features of Microsoft Visual Studio Express 2010, and it has appeared (according to this blog post ) that it is not supported. Because express editions do not allow add-ons, you cannot even use something like TestDriven.net to run tests from editions of Visual Studio Express.

NUnit , . / NUnit , NUnit ( Project Properties → Start External Program), dll , NUnit / , Visual Studio, .

+3

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


All Articles