MutualRefTests.dpr
上传用户: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 MutualRefTests;
  5. uses
  6.   TestFramework {$IFDEF LINUX},
  7.   QForms,
  8.   QGUITestRunner {$ELSE},
  9.   Forms,
  10.   GUITestRunner {$ENDIF},
  11.   TextTestRunner,
  12.   XPObserver in '..XPObserver.pas',
  13.   XPInterfacedObjectTests in 'XPInterfacedObjectTests.pas',
  14.   XPInterfacedObject in '..XPInterfacedObject.pas',
  15.   XPObserverTests in 'XPObserverTests.pas',
  16.   XPTempReleaseTests in 'XPTempReleaseTests.pas';
  17. {$R *.RES}
  18. begin
  19.   Application.Initialize;
  20. {$IFDEF LINUX}
  21.   QGUITestRunner.RunRegisteredTests;
  22. {$ELSE}
  23.   if System.IsConsole then
  24.     TextTestRunner.RunRegisteredTests
  25.   else
  26.     GUITestRunner.RunRegisteredTests;
  27. {$ENDIF}
  28. end.