1 | <?php |
||
12 | class ConfigTest extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | /** |
||
15 | * Tests Config::__construct |
||
16 | */ |
||
17 | public function testConstructor() |
||
27 | |||
28 | /** |
||
29 | * Tests Config::isLoadedFromFile |
||
30 | */ |
||
31 | public function testIsLoadedFromFile() |
||
38 | |||
39 | /** |
||
40 | * Tests Config::getHookConfig |
||
41 | * |
||
42 | * @expectedException \Exception |
||
43 | */ |
||
44 | public function testGetInvalidHook() |
||
49 | |||
50 | /** |
||
51 | * Tests Config::getPath |
||
52 | */ |
||
53 | public function testGetPath() |
||
60 | |||
61 | /** |
||
62 | * Tests Config::getJsonData |
||
63 | */ |
||
64 | public function testGetJsonData() |
||
74 | } |
||
75 |