lazarus/components/fpdebug/test/FpTest.lpr
martin 507706949b FPDebug: tests
git-svn-id: trunk@43277 -
2013-10-18 22:46:25 +00:00

16 lines
235 B
ObjectPascal

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