mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-20 07:22:33 +02:00
20 lines
336 B
ObjectPascal
20 lines
336 B
ObjectPascal
program LazDebFpTest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
TestDbgControlForm, Interfaces, Forms, GuiTestRunner, TestVarious,
|
|
TestWatches, TestBase, TestBreakPoint, TestStepping;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|