lazarus/components/lazdebuggers/lazdebuggerfp/test/LazDebFpTest.lpr
martin 776651b5e3 FpDebug, test: DisAssembler testcase
git-svn-id: trunk@64990 -
2021-04-14 14:34:57 +00:00

20 lines
357 B
ObjectPascal

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