您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

24 行
427 B

  1. program UtilsTests;
  2. {$mode objfpc}{$H+}
  3. uses
  4. sysutils, Interfaces, Forms, GuiTestRunner, uGenericsTests;
  5. {$R *.res}
  6. var
  7. heaptrcFile: String;
  8. begin
  9. heaptrcFile := ChangeFileExt(Application.ExeName, '.heaptrc');
  10. if (FileExists(heaptrcFile)) then
  11. DeleteFile(heaptrcFile);
  12. SetHeapTraceOutput(heaptrcFile);
  13. Application.Initialize;
  14. Application.CreateForm(TGuiTestRunner, TestRunner);
  15. Application.Run;
  16. end.