mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-24 23:16:20 +02:00
19 lines
293 B
ObjectPascal
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.
|
|
|