fpc/packages/fcl-mustache/tests/testmustache.lpr
michael 5e2bf25790 * Mustache templates implementation
git-svn-id: trunk@49240 -
2021-04-20 11:39:30 +00:00

30 lines
570 B
ObjectPascal

program testmustache;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, tcmustache, tcspecs,
tcexmustache, tcbasemustache, tcdbmustache;
type
{ TMyTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
DefaultFormat:=fPlain;
DefaultRunAllTests:=True;
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Title := 'FPCUnit Console test runner';
Application.Run;
Application.Free;
end.