I am "translating" the NUnit test to Visual Studios unit testing, and I wonder if the attribute [ClassInitialize()]in VS matches the equivalent [SetUp()]in NUnit?
[ClassInitialize()]
[SetUp()]
[SetUp] corresponds to [TestInitialize]
[SetUp]
[TestInitialize]
[TestFixtureSetUp] corresponds to [ClassInitialize]
[TestFixtureSetUp]
[ClassInitialize]
Here is the full image .