mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-24 07:03:29 +02:00
18 lines
372 B
ObjectPascal
18 lines
372 B
ObjectPascal
program TestFpGdbmi;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, TestGDBMIControl, TestWatches, FpGdbmiDebugger, TestBase;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
TestBase.TestGdbClass := TFpGDBMIDebugger;
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.CreateForm(TTestControlForm, TestControlForm);
|
|
Application.Run;
|
|
end.
|
|
|