Check out example codes for "setup and teardown nunit". It will help you in understanding the concepts better.
Code Example 1
public class BaseClass
{
[SetUp]
public void BaseSetUp() { ... } // Exception thrown!
[TearDown]
public void BaseTearDown() { ... }
}
[TestFixture]
public class DerivedClass : BaseClass
{
[SetUp]
public void DerivedSetUp() { ... }
[TearDown]
public void DerivedTearDown() { ... }
[Test]
public void TestMethod() { ... }
}
Learn ReactJs, React Native from akashmittal.com