25 lines
761 B
PHP
25 lines
761 B
PHP
<?php
|
|
/**
|
|
* Setup autoloading for the tests.
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category Horde
|
|
* @package Nag
|
|
* @subpackage UnitTests
|
|
* @author Gunnar Wrobel <wrobel@pardus.de>
|
|
* @link http://www.horde.org/apps/nag
|
|
* @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
|
|
*/
|
|
|
|
Horde_Test_Autoload::addPrefix('Nag', __DIR__ . '/../../lib');
|
|
|
|
/** Load the basic test definition */
|
|
require_once __DIR__ . '/TestCase.php';
|
|
require_once __DIR__ . '/Unit/Driver/Base.php';
|
|
require_once __DIR__ . '/Unit/Driver/Sql/Base.php';
|
|
require_once __DIR__ . '/Unit/Nag/Base.php';
|
|
require_once __DIR__ . '/Unit/Nag/Sql/Base.php';
|
|
require_once __DIR__ . '/Unit/Form/Task/Base.php';
|
|
require_once __DIR__ . '/Unit/Form/Task/Sql/Base.php';
|