1: <?php
2: /**
3: * This class provides the application 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: class Skeleton_Test extends Horde_Test
11: {
12: /**
13: * The module list
14: *
15: * @var array
16: */
17: protected $_moduleList = array();
18:
19: /**
20: * PHP settings list.
21: *
22: * @var array
23: */
24: protected $_settingsList = array();
25:
26: /**
27: * PEAR modules list.
28: *
29: * @var array
30: */
31: protected $_pearList = array();
32:
33: /**
34: * Required configuration files.
35: *
36: * @var array
37: */
38: protected $_fileList = array();
39:
40: /**
41: * Inter-Horde application dependencies.
42: *
43: * @var array
44: */
45: protected $_appList = array();
46:
47: /**
48: * Any application specific tests that need to be done.
49: *
50: * @return string HTML output.
51: */
52: public function appTests()
53: {
54: }
55:
56: }
57: