fpc/packages/fcl-web/tests/fpcunithpack.lpr
michael ad8e20efb7 * Moved hpack to fcl-web
git-svn-id: trunk@33602 -
2016-05-01 18:03:18 +00:00

28 lines
472 B
ObjectPascal

program fpcunithpack;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, uhpacktest1,sysutils;
type
{ TLazTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
DefaultFormat:=fPlain;
DefaultRunAllTests:=True;
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Run;
Application.Free;
end.