fpc/packages/fcl-json/tests/testjsonconf.pp
michael 3a0c9a638a * Added jsonconf
git-svn-id: trunk@8573 -
2007-09-20 19:46:39 +00:00

26 lines
421 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
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Run;
Application.Free;
end.