1 | <?php |
||
14 | class YamlReaderTest extends \PHPUnit_Framework_TestCase |
||
15 | { |
||
16 | |||
17 | public function testReader() |
||
30 | |||
31 | |||
32 | /** |
||
33 | * @expectedException \Jalle19\StatusManager\Exception\InvalidConfigurationException |
||
34 | * @expectedExceptionMessageRegExp *The configuration file does not* |
||
35 | */ |
||
36 | public function testMissingFile() |
||
41 | |||
42 | |||
43 | /** |
||
44 | * @expectedException \Jalle19\StatusManager\Exception\InvalidConfigurationException |
||
45 | * @expectedExceptionMessageRegExp *Failed to parse* |
||
46 | */ |
||
47 | public function testUnparsableConfiguration() |
||
55 | |||
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | private function getTemporaryFilePath() |
||
64 | |||
65 | } |
||
66 |