testidl.pas 412 B

123456789101112131415161718192021222324
  1. program testidl;
  2. {$mode objfpc}
  3. {$H+}
  4. uses
  5. {$ifdef unix}
  6. cwstring,
  7. {$endif}
  8. consoletestrunner, webidlscanner, tcidlscanner, webidlparser, webidldefs,
  9. tcidlparser, tcwebidldefs, tcwebidl2wasmjob;
  10. Var
  11. Application : TTestRunner;
  12. begin
  13. DefaultRunAllTests:=True;
  14. DefaultFormat:=fPlain;
  15. Application:=TTestRunner.Create(Nil);
  16. Application.Initialize;
  17. Application.Run;
  18. Application.Free;
  19. end.