1 | <?php |
||
21 | class ConfigurationTest extends \PHPUnit_Framework_TestCase |
||
22 | { |
||
23 | use ConfigurationTestCaseTrait; |
||
24 | |||
25 | /** |
||
26 | * @test |
||
27 | */ |
||
28 | public function it_does_not_break_if_not_customized() |
||
36 | |||
37 | /** |
||
38 | * @test |
||
39 | */ |
||
40 | public function it_has_default_authorization_checker() |
||
50 | |||
51 | /** |
||
52 | * @test |
||
53 | */ |
||
54 | public function its_authorization_checker_can_be_customized() |
||
64 | |||
65 | /** |
||
66 | * @test |
||
67 | */ |
||
68 | public function its_authorization_checker_cannot_be_empty() |
||
77 | |||
78 | /** |
||
79 | * {@inheritdoc} |
||
80 | */ |
||
81 | protected function getConfiguration() |
||
85 | } |
||
86 |