guitestfpreport.lpr 277 B

1234567891011121314151617181920212223242526
  1. program guitestfpreport;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Classes
  5. ,Interfaces
  6. ,Forms
  7. ,GuiTestRunner
  8. ,regtests
  9. ;
  10. procedure MainProc;
  11. begin
  12. Application.Initialize;
  13. Application.CreateForm(TGUITestRunner, TestRunner);
  14. Application.Run;
  15. end;
  16. begin
  17. MainProc;
  18. end.