fpc/packages/fcl-process/tests/testprocess.pp
Michaël Van Canneyt 1fdc6ef6a7 * Fixes and tests
2023-12-16 22:00:04 +01:00

29 lines
514 B
ObjectPascal

program testprocess;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, utcprocess;
type
{ TMyTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
DefaultRunAllTests:=True;
DefaultFormat:=fPlain;
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Title := 'FPCUnit Console test runner';
Application.Run;
Application.Free;
end.