1: <?php
2: /**
3: * This class provides the Vilma configuration for the test script.
4: *
5: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file LICENSE for license information (BSD). If you did not
8: * did not receive this file, see http://cvs.horde.org/co.php/vilma/LICENSE.
9: *
10: * @author Michael Slusarz <slusarz@horde.org>
11: * @package Vilma
12: */
13: class Vilma_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: );
44:
45: /**
46: * Inter-Horde application dependencies.
47: *
48: * @var array
49: */
50: protected $_appList = array();
51:
52: /**
53: * Any application specific tests that need to be done.
54: *
55: * @return string HTML output.
56: */
57: public function appTests()
58: {
59: }
60:
61: }
62: