Skip to content
amirci edited this page Dec 23, 2010 · 1 revision

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()
        {
        }

Clone this wiki locally