22 lines
587 B
PHP
22 lines
587 B
PHP
<?php
|
|
/**
|
|
* Setup autoloading for the tests.
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category Horde
|
|
* @package Turba
|
|
* @subpackage UnitTests
|
|
* @author Gunnar Wrobel <wrobel@pardus.de>
|
|
* @link http://www.horde.org/apps/turba
|
|
* @license http://www.horde.org/licenses/apache Apache-like
|
|
*/
|
|
|
|
Horde_Test_Autoload::addPrefix('Turba', __DIR__ . '/../../lib');
|
|
|
|
/** Load the basic test definition */
|
|
require_once __DIR__ . '/TestCase.php';
|
|
require_once __DIR__ . '/Stub/ObjectsManager.php';
|
|
require_once __DIR__ . '/Stub/TypesManager.php';
|
|
require_once __DIR__ . '/Stub/Tagger.php';
|