Attributes | NUnit Docs
docs.nunit.org › articles › nunitNUnit uses custom attributes to identify tests. All NUnit attributes are contained in the NUnit.Framework namespace. Each source file that contains tests must include a using statement for that namespace and the project must reference the framework assembly, nunit.framework.dll. This table lists all the attributes supported by NUnit.
SetUp | NUnit Docs
docs.nunit.org › articles › nunitThe SetUp attribute is inherited from any base class. Therefore, if a base class has defined a SetUp method, that method will be called before each test method in the derived class. You may define a SetUp method in the base class and another in the derived class. NUnit will call base class SetUp methods before those in the derived classes.