| [ Index ] |
PHP Cross Reference of MantisBT |
[Summary view] [Print] [Text view]
1 <?php 2 # Mantis - a php based bugtracking system 3 4 # Mantis is free software: you can redistribute it and/or modify 5 # it under the terms of the GNU General Public License as published by 6 # the Free Software Foundation, either version 2 of the License, or 7 # (at your option) any later version. 8 # 9 # Mantis is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with Mantis. If not, see <http://www.gnu.org/licenses/>. 16 17 /** 18 * @package Tests 19 * @subpackage UnitTests 20 * @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net 21 * @link http://www.mantisbt.org 22 */ 23 24 /** 25 * Test config 26 */ 27 require_once dirname(__FILE__) . '/../TestConfig.php'; 28 29 require_once 'EnumTest.php'; 30 require_once 'StringTest.php'; 31 32 /** 33 * @package Tests 34 * @subpackage UnitTests 35 * @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net 36 * @link http://www.mantisbt.org 37 */ 38 class Mantis_AllTests extends PHPUnit_Framework_TestSuite 39 { 40 public static function suite() 41 { 42 $suite = new Mantis_AllTests('Main Code'); 43 44 $suite->addTestSuite('MantisEnumTest'); 45 $suite->addTestSuite('Mantis_StringTest'); 46 47 return $suite; 48 } 49 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Jul 28 15:48:31 2011 | Cross-referenced by PHPXref 0.7 |