lazarus/components/fpdebug/test/FpTest.lpr
martin ab175baa4e FPDebug: (re-)start testcase
git-svn-id: trunk@43865 -
2014-02-02 02:10:19 +00:00

16 lines
254 B
ObjectPascal

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