testsqlscanner.lpr 489 B

123456789101112131415161718192021222324252627282930
  1. program testsqlscanner;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Classes, consoletestrunner, tcsqlscanner,
  5. fpsqltree, fpsqlscanner, fpsqlparser,
  6. tcparser, tcgensql;
  7. type
  8. { TLazTestRunner }
  9. TMyTestRunner = class(TTestRunner)
  10. protected
  11. // override the protected methods of TTestRunner to customize its behavior
  12. end;
  13. var
  14. Application: TMyTestRunner;
  15. {$R *.res}
  16. begin
  17. Application := TMyTestRunner.Create(nil);
  18. Application.Initialize;
  19. Application.Run;
  20. Application.Free;
  21. end.