fpc/tests/test/units/fpcunit/tbucketlist.lpr
2008-05-26 18:31:36 +00:00

27 lines
476 B
ObjectPascal

program tbucketlist;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, tcbucketlist, bucketlist;
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.