1 | <?php |
||
8 | class ConfigurationTest extends \PHPUnit\Framework\TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @var Configuration |
||
12 | */ |
||
13 | protected $configuration; |
||
14 | |||
15 | /** |
||
16 | * @var Processor |
||
17 | */ |
||
18 | protected $processor; |
||
19 | |||
20 | protected function setUp() |
||
25 | |||
26 | /** |
||
27 | * @expectedException Symfony\Component\Config\Definition\Exception\InvalidConfigurationException |
||
28 | */ |
||
29 | public function testEmpty() |
||
33 | |||
34 | /** |
||
35 | * @expectedException Symfony\Component\Config\Definition\Exception\InvalidConfigurationException |
||
36 | */ |
||
37 | public function testHostRequired() |
||
43 | |||
44 | /** |
||
45 | * @expectedException Symfony\Component\Config\Definition\Exception\InvalidConfigurationException |
||
46 | */ |
||
47 | public function testDirRequired() |
||
55 | |||
56 | public function testSuccess() |
||
72 | } |
||
73 |