John
John

Reputation: 685

C# Unit Test framework for Visual Studio?

My director told me that there is a Unit Test framework for Visual Studio from Microsoft, but didn't know what the name of the tool was. Could anyone of you give a hint on it?

Upvotes: 5

Views: 3612

Answers (2)

Jon Skeet
Jon Skeet

Reputation: 1503984

MS Test - it's in the Professional version these days.

From what I remember, in 2005 it was only in the Team System editions (test and developer); as of 2008 it's in Professional.

Of course there are plenty of other unit test frameworks for .NET, such as NUnit, MbUnit and xUnit.

Upvotes: 8

Dave Markle
Dave Markle

Reputation: 97861

It's called MSTest. It's built into the Team Edition for Testers edition (and the higher level SKUs) of VS 2008.

In VS 2010, it's included in Visual Studio Professional.

Upvotes: 2

Related Questions