ProjectSource.txt
上传用户:yjb1804
上传日期:2021-01-30
资源大小:3105k
文件大小:1k
源码类别:

Email服务器

开发平台:

Delphi

  1. // Uncomment the following directive to create a console application
  2. // or leave commented to create a GUI application... 
  3. // {$APPTYPE CONSOLE}
  4. program #PROJECTNAME;
  5. uses
  6.   TestFramework {$IFDEF LINUX},
  7.   QForms,
  8.   QGUITestRunner {$ELSE},
  9.   Forms,
  10.   GUITestRunner  {$ENDIF},
  11.   TextTestRunner;
  12. {$R *.RES}
  13. begin
  14.   Application.Initialize;
  15. {$IFDEF LINUX}
  16.   QGUITestRunner.RunRegisteredTests;
  17. {$ELSE}
  18.   if System.IsConsole then
  19.     TextTestRunner.RunRegisteredTests
  20.   else
  21.     GUITestRunner.RunRegisteredTests;
  22. {$ENDIF}
  23. end.