Create method |
Applies to
TTestResult
Declaration
Constructor Create;Implementation
constructor TTestResult.Create; begin inherited Create; fFailures := TList.Create; fErrors := TList.Create; fListeners := TInterfaceList.Create; fRunTests := 0; fStop := false; End; |
|