mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 23:40:40 +01:00
- 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 -
31 lines
489 B
ObjectPascal
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.
|