1 | <?php |
||
17 | class ConfigurationTest extends \PHPUnit_Framework_TestCase |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Use Trait for Configuration testing |
||
22 | */ |
||
23 | use ConfigurationTestCaseTrait; |
||
24 | |||
25 | /** |
||
26 | * @return ConfigurationInterface |
||
27 | */ |
||
28 | protected function getConfiguration() |
||
32 | |||
33 | /** |
||
34 | * Test find_directory_service not defined |
||
35 | */ |
||
36 | public function testFindDirectoryServiceNotDefined() |
||
45 | |||
46 | /** |
||
47 | * Test finder not defined |
||
48 | */ |
||
49 | public function testFinderNotDefined() |
||
58 | |||
59 | /** |
||
60 | * Test lister not defined |
||
61 | */ |
||
62 | public function testListerNotDefined() |
||
72 | |||
73 | /** |
||
74 | * Test Ok |
||
75 | */ |
||
76 | public function testOk() |
||
86 | |||
87 | } |
||
88 |