lazarus/components/fpcunit/ide/fpcunitproject1.pas
2006-10-18 21:21:24 +00:00

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.