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

18 lines
315 B
ObjectPascal

program TestFpGdbmi;
{$mode objfpc}{$H+}
uses
TestDbgControlForm,
Interfaces, Forms, GuiTestRunner, TestWatches, FpGdbmiDebugger, TestBase;
{$R *.res}
begin
TestBase.TestGdbClass := TFpGDBMIDebugger;
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.