lazarus/tools/snapshots/checksnapshots.lpr
2008-01-22 11:20:57 +00:00

28 lines
470 B
ObjectPascal

program checksnapshots;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner,
SnapshotsUptodate;
type
{ TLazTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
Application := TMyTestRunner.Create(nil);
Application.Title:='Lazarus snapshots monitor';
Application.Initialize;
Application.Run;
Application.Free;
end.