lazarus/components/lazdebuggers/lazdebuggerfp/test/LazDebFpTest.lpr
martin d70c65f807 LazDebuggerFp: Test exception stepping
git-svn-id: trunk@62346 -
2019-12-08 00:18:48 +00:00

20 lines
348 B
ObjectPascal

program LazDebFpTest;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
TestDbgControlForm, Interfaces, Forms, GuiTestRunner, LazClasses, TestVarious,
TestWatches, TestBase, TestBreakPoint, TestStepping;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.