1<?php
2/**
3 * Setup autoloading for the tests.
4 *
5 * PHP version 5
6 *
7 * Copyright 2009-2016 Horde LLC (http://www.horde.org/)
8 *
9 * See the enclosed file COPYING for license information (LGPL). If you
10 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
11 *
12 * @category   Kolab
13 * @package    Kolab_Format
14 * @subpackage UnitTests
15 * @author     Gunnar Wrobel <wrobel@pardus.de>
16 * @license    http://www.horde.org/licenses/lgpl21 LGPL 2.1
17 * @link       http://www.horde.org/libraries/Horde_Kolab_Format
18 */
19
20/** Load the basic test definition */
21require_once __DIR__ . '/TestCase.php';
22
23/** Load stub definitions */
24require_once __DIR__ . '/Stub/BooleanDefault.php';
25require_once __DIR__ . '/Stub/BooleanNotEmpty.php';
26require_once __DIR__ . '/Stub/ColorDefault.php';
27require_once __DIR__ . '/Stub/ColorNotEmpty.php';
28require_once __DIR__ . '/Stub/Composite.php';
29require_once __DIR__ . '/Stub/DateTimeDefault.php';
30require_once __DIR__ . '/Stub/DateTimeNotEmpty.php';
31require_once __DIR__ . '/Stub/IntegerDefault.php';
32require_once __DIR__ . '/Stub/IntegerNotEmpty.php';
33require_once __DIR__ . '/Stub/Log.php';
34require_once __DIR__ . '/Stub/Dummy.php';
35require_once __DIR__ . '/Stub/MultipleNotEmpty.php';
36require_once __DIR__ . '/Stub/MultipleDefault.php';
37require_once __DIR__ . '/Stub/StringDefault.php';
38require_once __DIR__ . '/Stub/StringNotEmpty.php';
39require_once __DIR__ . '/Stub/Types.php';
40