123456789101112131415161718192021222324252627282930 |
- 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.
|