Method | Description | |
---|---|---|
Act ( ) : void |
When overridden in a derived class, this method is used to perform interactions against the system under test. This method is called automatically after Arrange and before each test method runs. |
|
Arrange ( ) : void |
When overridden in a derived class, this method is used to set up the current state of the specs context. This method is called automatically before every test, before the Act method. |
|
Teardown ( ) : void |
When overridden in a derived class, this method is used to reset the state of the system after a test method has completed. This method is called automatically after each TestMethod has run. |
Method | Description | |
---|---|---|
MainSetup ( ) : void | ||
MainTeardown ( ) : void |