Tags: , , , | Posted by bsstahl on 10/7/2006 2:42 PM | Comments (0)

Mark Michaelis posted a hitlist 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:


nUnitVSTS
[TestFixture] [TestClass]
[TestFixtureSetUp] [ClassInitialize]
[TestFixtureTearDown] [ClassCleanup]
[SetUp] [TestInitialize]
[TearDown] [TestCleanup]
[Test] [TestMethod]