testsqlscanner.lpr 477 B

12345678910111213141516171819202122232425262728
  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. begin
  16. Application := TMyTestRunner.Create(nil);
  17. Application.Initialize;
  18. Application.Run;
  19. Application.Free;
  20. end.