StopTests method |
Applies to
TTestCase
Declaration
Procedure StopTests(msg :String = '');
Description
Throws EStopTestsFailure to Stop further testing.
Parameters |
msg | An optional message to attach to the thrown exception. |
Raises |
EStopTestsFailure |
See Also
procedure TTestCase.StopTests(msg :String); begin raise EStopTestsFailure.Create(msg); End; |
|