fpc/packages/fcl-db/tests/testsqlscanner.lpr
michael 7ff2603c22 * Add defaults
git-svn-id: trunk@43140 -
2019-10-06 11:21:00 +00:00

33 lines
542 B
ObjectPascal

program testsqlscanner;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, tcsqlscanner,
fpsqltree, fpsqlscanner, fpsqlparser,
tcparser, tcgensql;
type
{ TLazTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
{$R *.res}
begin
DefaultFormat:=fPlain;
DefaultRunAllTests:=True;
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Run;
Application.Free;
end.