fpc/packages/webidl/tests/testidl.pas
michael e655b9137b * webidl added
git-svn-id: trunk@39292 -
2018-06-23 13:57:45 +00:00

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.