I have some experience in MS Test but new to NUnit.
- Whether NUnit [Setup] is corresponding to [ClassInitialize] or [TestInitialize] in MS Test?
- What is the NUnit attribute corresponding to [TestInitialize]?
REFERENCE:
I have some experience in MS Test but new to NUnit.
REFERENCE:
NUnit [SetUp] corresponds to [TestInitialize].
For [ClassInitialize], use [TestFixtureSetUp] in NUnit.
The complete list can be found by a simple search. (a little old tho)
NUnit parallel to [ClassInitialize]
is [OneTimeSetup]
Parallel to [TestInitialize]
is [Setup]