lazarus/components/fpdebug/test/FpTest.lpr
martin 3f4da57059 FpDebug: fix ErrorHandler
git-svn-id: trunk@44580 -
2014-04-01 15:05:33 +00:00

18 lines
369 B
ObjectPascal

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