mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 09:37:56 +02:00
28 lines
470 B
ObjectPascal
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.
|