Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 722
John Avatar asked May 28 '10 14:05

John


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


2 Answers

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.

like image 71
Jon Skeet Avatar answered Oct 22 '22 15:10

Jon Skeet


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.

like image 36
Dave Markle Avatar answered Oct 22 '22 15:10

Dave Markle