1 | <?php |
||
16 | class FindExtensionTest extends AbstractExtensionTestCase |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * Get container extension |
||
21 | * @return array |
||
22 | */ |
||
23 | protected function getContainerExtensions() |
||
27 | |||
28 | /** |
||
29 | * Test find_directory_service not defined |
||
30 | * @expectedException Symfony\Component\Config\Definition\Exception\InvalidConfigurationException |
||
31 | */ |
||
32 | public function testFindDirectoryServiceNotDefined() |
||
36 | |||
37 | /** |
||
38 | * Test finder not defined |
||
39 | * @expectedException Symfony\Component\Config\Definition\Exception\InvalidConfigurationException |
||
40 | */ |
||
41 | public function testFinderNotDefined() |
||
45 | |||
46 | /** |
||
47 | * Test lister not defined |
||
48 | * @expectedException Symfony\Component\Config\Definition\Exception\InvalidConfigurationException |
||
49 | */ |
||
50 | public function testListerNotDefined() |
||
54 | |||
55 | /** |
||
56 | * Test Ok |
||
57 | */ |
||
58 | public function testOk() |
||
77 | |||
78 | } |