mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 18:33:40 +02:00
22 lines
355 B
ObjectPascal
22 lines
355 B
ObjectPascal
program testidl;
|
|
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
uses
|
|
consoletestrunner, webidlscanner, tcidlscanner, webidlparser, webidldefs,
|
|
tcidlparser, tcwebidldefs;
|
|
|
|
Var
|
|
Application : TTestRunner;
|
|
|
|
begin
|
|
DefaultRunAllTests:=True;
|
|
DefaultFormat:=fPlain;
|
|
Application:=TTestRunner.Create(Nil);
|
|
Application.Initialize;
|
|
Application.Run;
|
|
Application.Free;
|
|
end.
|
|
|