Files
AGLogs/FPCTest/fpcunitproject1.lpr
2018-06-01 21:07:34 +03:00

28 lines
416 B
ObjectPascal

program fpcunitproject1;
{$mode objfpc}{$H+}
uses
Classes,
consoletestrunner,
TestCase1;
type
{ TMyTestRunner }
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.Run;
Application.Free;
end.