fpc/packages/fcl-db/tests/testsqlscanner.lpr
reiniero 1e21d66b89 * fcl-db: sql parser tests:
- cosmetic changes (capitalization, comments)
- add tests for SET TERM, symbol literal parsing introduced in r27907
- Lazarus test project: default+debug build mode: no optimalization, more checks enabled

git-svn-id: trunk@27908 -
2014-06-09 08:01:20 +00:00

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