diff options
author | Gunnar Wrobel <wrobel@pardus.de> | 2010-02-21 08:05:08 (GMT) |
---|---|---|
committer | Gunnar Wrobel <wrobel@pardus.de> | 2010-02-21 08:05:08 (GMT) |
commit | 1c336bcceb0634b7e53d30e06a2d0adb30cdbf42 (patch) | |
tree | 8f955914b38058ec881087cbfc49487b27ed5f0d | |
parent | d8838419aad8ae4d6b97690a8f70738236cec6c8 (diff) | |
download | kolab-webadmin-1c336bcceb0634b7e53d30e06a2d0adb30cdbf42.tar.gz |
No need for autoloading (yet) as the package is still without structure.
-rw-r--r-- | test/KolabAdmin/AllTests.php | 5 | ||||
-rw-r--r-- | test/KolabAdmin/TestInit.php | 25 |
2 files changed, 0 insertions, 30 deletions
diff --git a/test/KolabAdmin/AllTests.php b/test/KolabAdmin/AllTests.php index b3acc43..fce7c9d 100644 --- a/test/KolabAdmin/AllTests.php +++ b/test/KolabAdmin/AllTests.php @@ -16,11 +16,6 @@ if (!defined('PHPUnit_MAIN_METHOD')) { } /** - * Initialize testing for this application. - */ -require_once 'TestInit.php'; - -/** * Combine the tests for this package. * * Copyright 2007-2010 The Horde Project (http://www.horde.org/) diff --git a/test/KolabAdmin/TestInit.php b/test/KolabAdmin/TestInit.php deleted file mode 100644 index b05e0d4..0000000 --- a/test/KolabAdmin/TestInit.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php -/** - * Initialize testing for this application. - * - * PHP version 5 - * - * @category Kolab - * @package KolabAdmin - * @author Gunnar Wrobel <wrobel@pardus.de> - * @license http://www.fsf.org/copyleft/lgpl.html LGPL - * @link http://pear.horde.org/index.php?package=KolabAdmin - */ - -/** - * The Autoloader allows us to omit "require/include" statements. - */ -require_once 'Horde/Autoloader.php'; - -if (!defined('KOWARD_BASE')) { - define('KOWARD_BASE', dirname(__FILE__) . '/../'); -} - -/* Set up the application class and controller loading */ -Horde_Autoloader::addClassPattern('/^KolabAdmin_/', KOWARD_BASE . '/lib/'); -Horde_Autoloader::addClassPattern('/^KolabAdmin_/', KOWARD_BASE . '/app/controllers/'); |