NUnit.Framework.ExecutionHookMethodsAttribute
Abstract base attribute class for defining execution hooks methods.
protected ExecutionHookMethodsAttribute()
Method that is called immediately after every [SetUp] or [OneTimeSetUp] method is executed.
Override this to implement custom logic to run after the setup.
Method that is called immediately after every [TearDown] or [OneTimeTearDown] method is executed.
Override this to implement custom logic to run after the teardown.
Method that is called immediately after the AfterTest(ITest test) method of a ITestAction is executed
Method that is called immediately before the AfterTest(ITest test) method of a ITestAction is executed
Method that is called immediately after the test is executed.
Override this to implement custom logic to run after the test.
Method that is called immediately before every [SetUp] or [OneTimeSetUp] method is executed.
Override this to implement custom logic to run before the test.
Method that is called immediately before every [TearDown] or [OneTimeTearDown] method is executed.
Override this to implement custom logic to run before the teardown.
Method that is called immediately after the BeforeTest(ITest test) method of a ITestAction is executed
Method that is called immediately before the BeforeTest(ITest test) method of a ITestAction is executed
Method that is called immediately before the test is executed.
Override this to implement custom logic to run before the test.