lazarus/components/lazdebuggers/lazdebuggerfp/test/LazDebFpTest.lpr
martin 1c5491c441 FpDebug: tests for step over
git-svn-id: trunk@61879 -
2019-09-14 14:33:07 +00:00

20 lines
336 B
ObjectPascal

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