lazarus/tools/snapshots/checksnapshotsgui.lpr
2007-04-25 21:47:31 +00:00

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.