nUnit vs. VSTS
Posted by bsstahl on 2006-10-07 and Filed Under: development
Mark Michaelis posted a hit list of things to do to convert from nUnit to VSTS tests in his article Converting a class library to a VSTS Test Project. A big part of this process is understanding the attribute translation:
nUnit | VSTest |
---|---|
TestFixture | TestClass |
TestFixtureSetUp | ClassInitialize |
TestFixtureTearDown | ClassCleanup |
SetUp | TestInitialize |
TearDown | TestCleanup |
Test | TestMethod |