16 lines
330 B
PHP
16 lines
330 B
PHP
<?php
|
|
/**
|
|
* Setup autoloading for the tests.
|
|
*
|
|
* @category Horde
|
|
* @copyright 2011-2015 Horde LLC
|
|
* @internal
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package Passwd
|
|
* @subpackage UnitTests
|
|
*/
|
|
|
|
Horde_Test_Autoload::addPrefix('Passwd', __DIR__ . '/../../lib');
|
|
|
|
require_once __DIR__ . '/TestCase.php';
|