fpc/packages/fcl-json/tests/testjsonconf.pp
michael 7c5ce9efc6 * Fix bug id #28493
git-svn-id: trunk@31435 -
2015-08-28 09:29:08 +00:00

28 lines
474 B
ObjectPascal

program testjsonconf;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, jsonconftest, jsonconf;
type
{ TLazTestRunner }
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.Run;
Application.Free;
end.