Instead of [SetUp] and [TearDown] in Nunit what is the alternative in Visual Studio Ultimate 2010 Unit Testing. In Nunit you can imagine setup and teardown methods are as constructors and destructors for the tests in our class.
|
|
A method annotated with
|
|||
|
|
|
Visual Studio will use MSTest, that is Microsoft's unit testing framework, it is similar to NUnit. In fact, most of them are similar in concepts but different syntax. In order to view the comparsion, the creators of xUnit (another unit testing framework) have a list here: http://xunit.codeplex.com/wikipage?title=Comparisons More specifically what you asked for, One thing to note, I would stay with NUnit if you are attempting to do automated unit testing or some kind of continous integration. The main reason the various |
|||||||||
|