Repository URL to install this package:
|
Version:
2.0.10 ▾
|
program FPCUnitProject1;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner;
type
{ TLazTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Title := 'FPCUnit Console test runner';
Application.Run;
Application.Free;
end.