The BaseTest class provides an abstraction over the testing framework giving methods to setup before and after each tests that can be overridden.
The methods are:
protected virtual void BeforeAllTests() { } protected virtual void BeforeEachTest() { } protected virtual void AfterEachTest() { } protected virtual void AfterAllTests() { }
There was an error while loading. Please reload this page.