Where is MSTest V2 located

I can not find it. In particular, what I'm looking for is the ability to use the [DataTestMethod] and [DataRow] attributes in my unit tests. I have Visual Studio Professional 2015 installed and I cannot find these attributes in my installation. I started the installation to see if there was something that I did not see, and I did not see anything that could contain it.

According to this Microsoft page: https://blogs.msdn.microsoft.com/visualstudioalm/2016/06/17/taking-the-mstest-framework-forward-with-mstest-v2/

"... you can immediately start using it (with Visual Studio 2015 itself) with the following steps:"

"Install the" MSTest V2 "test circuit, as before, look for and install the framework package as shown below:"

It is not clear what it means "as before." I can not find MSTest V2 to install anywhere.

On the right above the quote above, this is the 5th step:

(5) Delivered as a NuGet package.

But I can not find the NuGet package for MS Test V2.

What a deal? It seems like it should be ridiculously simple to do, and yet I am completely at a dead end.

+6
source share
2 answers

You can use this NuGet package:

https://www.nuget.org/packages/MSTest.TestFramework/1.0.1-preview

Although the package has a version number of "1.x", it looks like the package referenced by the ad.

+7
source

All Articles