~ubuntu-branches/ubuntu/vivid/php-horde-nag/vivid-proposed

« back to all changes in this revision

Viewing changes to nag-4.1.4/test/Nag/Autoload.php

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2014-03-11 21:27:39 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140311212739-m6rbihspu5zjpvaq
Tags: 4.1.4-1
New upstream version 4.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Setup autoloading for the tests.
 
4
 *
 
5
 * PHP version 5
 
6
 *
 
7
 * @category   Horde
 
8
 * @package    Nag
 
9
 * @subpackage UnitTests
 
10
 * @author     Gunnar Wrobel <wrobel@pardus.de>
 
11
 * @link       http://www.horde.org/apps/nag
 
12
 * @license    http://www.horde.org/licenses/gpl GNU General Public License, version 2
 
13
 */
 
14
 
 
15
Horde_Test_Autoload::addPrefix('Nag', __DIR__ . '/../../lib');
 
16
 
 
17
/** Load the basic test definition */
 
18
require_once __DIR__ . '/TestCase.php';
 
19
require_once __DIR__ . '/Unit/Driver/Base.php';
 
20
require_once __DIR__ . '/Unit/Driver/Sql/Base.php';
 
21
require_once __DIR__ . '/Unit/Nag/Base.php';
 
22
require_once __DIR__ . '/Unit/Nag/Sql/Base.php';
 
23
require_once __DIR__ . '/Unit/Form/Task/Base.php';
 
24
require_once __DIR__ . '/Unit/Form/Task/Sql/Base.php';