testpassrc.lpr 601 B

1234567891011121314151617181920212223242526272829
  1. program testpassrc;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Classes, consoletestrunner, tcscanner, tctypeparser, tcstatements,
  5. tcbaseparser, tcmoduleparser, tconstparser, tcvarparser, tcclasstype,
  6. tcexprparser, tcprocfunc, tcpassrcutil;
  7. type
  8. { TLazTestRunner }
  9. TMyTestRunner = class(TTestRunner)
  10. protected
  11. // override the protected methods of TTestRunner to customize its behavior
  12. end;
  13. var
  14. Application: TMyTestRunner;
  15. begin
  16. Application := TMyTestRunner.Create(nil);
  17. DefaultFormat:=fplain;
  18. DefaultRunAllTests:=True;
  19. Application.Initialize;
  20. Application.Run;
  21. Application.Free;
  22. end.