fpc/packages/fcl-db/tests/testsqlscanner.lpr
michael 4c7f9238c7 * SQL parser
git-svn-id: trunk@15832 -
2010-08-16 23:13:24 +00:00

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