Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / webidl / tests / testidl.pas
Size: Mime:
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.