1 | <?php |
||
15 | class ThemeTest extends TestCase |
||
16 | { |
||
17 | /** |
||
18 | * @dataProvider configProvider |
||
19 | */ |
||
20 | public function testGetAllThemes($config) |
||
25 | |||
26 | /** |
||
27 | * @dataProvider configProvider |
||
28 | */ |
||
29 | public function testCurrent($config) |
||
34 | |||
35 | /** |
||
36 | * @dataProvider configProvider |
||
37 | */ |
||
38 | public function testCurrentTheme($config) |
||
43 | |||
44 | /** |
||
45 | * @dataProvider configProvider |
||
46 | */ |
||
47 | public function testIsCurrent($config) |
||
52 | |||
53 | /** |
||
54 | * @dataProvider configProvider |
||
55 | */ |
||
56 | public function testAsset($config) |
||
61 | |||
62 | /** |
||
63 | * @dataProvider configProvider |
||
64 | */ |
||
65 | public function testAbsolutePath($config) |
||
70 | |||
71 | /** |
||
72 | * @dataProvider configProvider |
||
73 | */ |
||
74 | public function testPath($config) |
||
79 | |||
80 | /** |
||
81 | * @dataProvider configProvider |
||
82 | */ |
||
83 | public function testSetConfig($config) |
||
90 | |||
91 | /** |
||
92 | * @dataProvider configProvider |
||
93 | */ |
||
94 | public function testLoadThemes($config) |
||
99 | } |
||
100 |