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

Email服务器

开发平台:

Delphi

  1. program ProjectTest;
  2. uses
  3.   ExceptionLog,
  4.   Forms,
  5.   TestFrameWork,
  6.   GUITestRunner,
  7.   uTestRuleMgr in 'uTestRuleMgr.pas',
  8.   uRulerMgr in '..srcuRulerMgr.pas',
  9.   uSendMail in '..srcuSendMail.pas',
  10.   uCommon in '..srcuCommon.pas',
  11.   UEmailFile in '..srcUEmailFile.pas',
  12.   uEncrypt in '..srcuEncrypt.pas',
  13.   uMyXml in '..srcuMyXml.pas',
  14.   uRecvEmail in '..srcuRecvEmail.pas',
  15.   NativeXml in '..srcxmlnativexml.pas',
  16.   NativeXmlAppend in '..srcxmlNativeXmlAppend.pas',
  17.   NativeXmlObjectStorage in '..srcxmlNativeXmlObjectStorage.pas',
  18.   uTestCheckEmailTread in 'uTestCheckEmailTread.pas',
  19.   uCheckEmailThread in '..srcuCheckEmailThread.pas',
  20.   uTestCommon in 'uTestCommon.pas',
  21.   uTestCheckEmail in 'uTestCheckEmail.pas',
  22.   uCheckEmail in '..srcuCheckEmail.pas',
  23.   utestDate in 'utestDate.pas',
  24.   uTestEmailAwake in 'uTestEmailAwake.pas',
  25.   uEmailAwake in '..srcuEmailAwake.pas',
  26.   uTestSingnalMgr in 'uTestSingnalMgr.pas',
  27.   uSingnalMgr in '..srcuSingnalMgr.pas',
  28.   uTestQueue in 'uTestQueue.pas';
  29. {$R *.res}
  30. begin
  31.  Application.Initialize;
  32.  GUITestRunner.RunRegisteredTests;
  33. end.