1: <?php
2: /**
3: * This class provides the Chora configuration for the test script.
4: *
5: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (GPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/gpl.
9: *
10: * @author Michael Slusarz <slusarz@horde.org>
11: * @package Chora
12: */
13: class Chora_Test extends Horde_Test
14: {
15: /**
16: * The module list
17: *
18: * @var array
19: */
20: protected $_moduleList = array();
21:
22: /**
23: * PHP settings list.
24: *
25: * @var array
26: */
27: protected $_settingsList = array();
28:
29: /**
30: * PEAR modules list.
31: *
32: * @var array
33: */
34: protected $_pearList = array();
35:
36: /**
37: * Required configuration files.
38: *
39: * @var array
40: */
41: protected $_fileList = array(
42: 'config/conf.php' => null,
43: 'config/backends.php' => null
44: );
45:
46: /**
47: * Inter-Horde application dependencies.
48: *
49: * @var array
50: */
51: protected $_appList = array();
52:
53: /**
54: * Any application specific tests that need to be done.
55: *
56: * @return string HTML output.
57: */
58: public function appTests()
59: {
60: }
61:
62: }
63: