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

Email服务器

开发平台:

Delphi

  1. { $Id: ListTest.dpr,v 1.9 2002/10/02 23:53:41 neuromancer Exp $ }
  2. {: DUnit: An XTreme testing framework for Delphi programs.
  3.    @author  The DUnit Group.
  4.    @version $Revision: 1.9 $
  5. }
  6. (*
  7.  * The contents of this file are subject to the Mozilla Public
  8.  * License Version 1.1 (the "License"); you may not use this file
  9.  * except in compliance with the License. You may obtain a copy of
  10.  * the License at http://www.mozilla.org/MPL/
  11.  *
  12.  * Software distributed under the License is distributed on an "AS
  13.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  14.  * implied. See the License for the specific language governing
  15.  * rights and limitations under the License.
  16.  *
  17.  * The Original Code is DUnit.
  18.  *
  19.  * The Initial Developer of the Original Code are Serge Beaumont,
  20.  * Jeff Moore and Chris Houghten.
  21.  * Portions created The Initial Developers are Copyright (C) 2000.
  22.  * Portions created by The DUnit Group are Copyright (C) 2000.
  23.  * All rights reserved.
  24.  *
  25.  * Contributor(s):
  26.  * Jeff Moore <JeffMoore@users.sourceforge.net>
  27.  * Chris Houghten <choughte@users.sourceforge.net>
  28.  * Serge Beaumont <beaumose@users.sourceforge.net>
  29.  * Kris Golko <neuromancer@users.sourceforge.net>
  30.  * The DUnit group at SourceForge <http://dunit.sourceforge.net>
  31.  *)
  32. {$IFDEF LINUX}
  33. {$DEFINE DUNIT_CLX}
  34. {$ENDIF}
  35. program ListTest;
  36. uses
  37.   TestFramework,
  38. {$IFDEF DUNIT_CLX}
  39.   QGUITestRunner,
  40. {$ELSE}
  41.   GUITestRunner,
  42. {$ENDIF}
  43.   TListTestCase in 'TListTestCase.pas';
  44. {$R *.res}
  45. begin
  46.   TGUITestRunner.runRegisteredTests;
  47. end.