lazarus/components/fpdebug/test/FpTest.lpr
2013-10-11 18:35:33 +00:00

16 lines
221 B
ObjectPascal

program FpTest;
{$mode objfpc}{$H+}
uses
Interfaces, Forms, GuiTestRunner, TestPascalParser;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.