EndTest method
Informs the result that a test was completed.

Applies to
TTestResult

Declaration
Procedure EndTest(test: TTestCase);

Description
Notify any registered ITestListener that a test was completed.

Implementation

procedure TTestResult.EndTest(test: TTestCase);
var
  i: integer;
begin
  assert(assigned(fListeners));

  for i := 0 to fListeners.count - 1 do
  begin
    (fListeners[i] as ITestListener).EndTest(test);
  end;
End;


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