mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 21:38:22 +02:00
15 lines
254 B
ObjectPascal
15 lines
254 B
ObjectPascal
program checksnapshotsgui;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner,
|
|
SnapshotsUptodate, ftplistertest, TestMonitorCfg;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|