mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 03:32:38 +02:00
27 lines
406 B
ObjectPascal
27 lines
406 B
ObjectPascal
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
|
|
App: TMyTestRunner;
|
|
|
|
begin
|
|
App := TMyTestRunner.Create(nil);
|
|
App.Initialize;
|
|
App.Title := 'FPCUnit Console test runner';
|
|
App.Run;
|
|
App.Free;
|
|
end.
|