mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-17 09:48:22 +02:00
16 lines
244 B
ObjectPascal
16 lines
244 B
ObjectPascal
program TestAnchorDocking;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, TestADRestore, anchordockpkg;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|