SetUp method |
Applies to
TTestCase
Declaration
Procedure SetUp;
Description
This method is used to ensure that state of the application is in a known state before running any test cases. This method is called before each test is executed in this TTestCase. Override this method to add code to setup the preconditions for the testcases declared in descendants of TTestCase.
See Also
procedure TTestCase.SetUp; begin End; |
|