RunBare method
Runs the test case and collects the results in TestResult.

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;


HTML generated by Time2HELP
http://www.time2help.com