fpc/packages/fcl-db/tests/testsqlscanner_gui.lpr
reiniero d3bb0d4a17 + fcl-db: add GUI for tests in testsqlscanner
git-svn-id: trunk@27863 -
2014-06-06 08:49:16 +00:00

19 lines
293 B
ObjectPascal

program testsqlscanner_gui;
{$mode objfpc}{$H+}
uses
Interfaces, Forms, GuiTestRunner,
tcsqlscanner,
fpsqltree, fpsqlscanner, fpsqlparser,
tcparser, tcgensql;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.