EPCDUnitWizardTests.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 EPCDUnitWizardTests;
  5. uses
  6.   TestFramework {$IFDEF LINUX},
  7.   QForms,
  8.   QGUITestRunner {$ELSE},
  9.   Forms,
  10.   GUITestRunner {$ENDIF},
  11.   TextTestRunner,
  12.   XPTemplateParser in '..XPTemplateParser.pas',
  13.   XPDUnitMacrosTests in 'XPDUnitMacrosTests.pas',
  14.   XPDUnitMacros in '..XPDUnitMacros.pas',
  15.   XPDUnitParametersTests in 'XPDUnitParametersTests.pas',
  16.   XPDUnitParameters in '..XPDUnitParameters.pas',
  17.   XPDUnitCommon in '..XPDUnitCommon.pas',
  18.   XPTestedUnitUtils in '..XPTestedUnitUtils.pas',
  19.   XPTestedUnitUtilsTests in 'XPTestedUnitUtilsTests.pas',
  20.   XPTemplateParserTests in 'XPTemplateParserTests.pas',
  21.   XPTestedUnitParser in '..XPTestedUnitParser.pas',
  22.   XPTestedUnitParserTests in 'XPTestedUnitParserTests.pas',
  23.   XPParserFilters in '..XPParserFilters.pas';
  24. {$R *.RES}
  25. begin
  26.   Application.Initialize;
  27. {$IFDEF LINUX}
  28.   QGUITestRunner.RunRegisteredTests;
  29. {$ELSE}
  30.   if System.IsConsole then
  31.     TextTestRunner.RunRegisteredTests
  32.   else
  33.     GUITestRunner.RunRegisteredTests;
  34. {$ENDIF}
  35. end.