1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
13: class Kronolith_Test extends Horde_Test
14: {
15: 16: 17: 18: 19:
20: protected $_moduleList = array();
21:
22: 23: 24: 25: 26:
27: protected $_settingsList = array();
28:
29: 30: 31: 32: 33:
34: protected $_pearList = array(
35: 'Date' => array(
36: 'path' => 'Date/Calc.php',
37: 'error' => 'Kronolith requires the Date_Calc class to calculate dates.',
38: 'required' => true,
39: ),
40: 'Date_Holidays' => array(
41: 'error' => 'Date_Holidays can be used to calculate and display national and/or religious holidays.',
42: 'required' => false,
43: ),
44: 'XML_Serializer' => array(
45: 'path' => 'XML/Unserializer.php',
46: 'error' => 'The XML_Serializer might be needed by the Date_Holidays package for the translation of holidays',
47: 'required' => false,
48: )
49: );
50:
51: 52: 53: 54: 55:
56: protected $_fileList = array(
57: 'config/conf.php' => null,
58: );
59:
60: 61: 62: 63: 64:
65: protected $_appList = array();
66:
67: 68: 69: 70: 71:
72: public function appTests()
73: {
74: }
75:
76: }
77: