1<?php
2/**
3 * Setup autoloading for the tests.
4 *
5 * PHP version 5
6 *
7 * @category   Horde
8 * @package    Ansel
9 * @subpackage UnitTests
10 * @author     Michael J Rubinsky <mrubinsk@horde.org>
11 * @license    http://www.horde.org/licenses/gpl GPL-2.0
12 * @link       http://www.horde.org/apps/mnemo
13 */
14
15Horde_Test_Autoload::addPrefix('Ansel', __DIR__ . '/../../lib');
16
17/** Load the basic test definition */
18require_once __DIR__ . '/TestCase.php';
19require_once __DIR__ . '/Unit/Base.php';
20