lazarus/components/lazdebuggergdbmi/test/TestGdbmi.lpr
martin 4fd6f41ee5 Debugger-Tests: Refactor
git-svn-id: trunk@59615 -
2018-11-21 18:59:38 +00:00

19 lines
374 B
ObjectPascal

program TestGdbmi;
{$mode objfpc}{$H+}
uses
TestDbgControlForm, // use first
Interfaces, Forms, GuiTestRunner, TestGdbType, TestInstructionQueue,
TestDisAss, TestException, Testwatches, TestBreakPoint,
TestEnvironment, TestArgV, LazLogger;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.