RunBare method |
Applies to
TTestCase
Declaration
Procedure RunBare(testResult: TTestResult);
Description
This is the template method that defines the control flow for running a test case. Implementation
procedure TTestCase.RunBare(testResult: TTestResult); begin assert(assigned(testResult)); if getEnabled then begin testResult.Run(self); end; End; |
|