mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 16:37:49 +02:00
17 lines
255 B
ObjectPascal
17 lines
255 B
ObjectPascal
program LazDebFpTest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
TestDbgControlForm,
|
|
Interfaces, Forms, GuiTestRunner, TestWatches, TestBase;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|