RunSuite method
Runs a test.

Applies to
TTestResult

Declaration
Procedure RunSuite(test: TAbstractTest);

Description
Run executes a test cases and broadcasts status informatio to any listeners registered with this TTestResult. Run also records any failures or errors that occur while running the testcase. Listeners are also notified when TestingStarts and ends.

Parameters
test The test case to run.

Implementation

procedure TTestResult.RunSuite(test: TAbstractTest);
begin
  TestingStarts;
  try
    test.RunBare(self);
  finally
    TestingEnds
  end
End;


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