1 | <?php |
||
10 | final class SymfonyContainerAdapterTest extends TestCase |
||
11 | { |
||
12 | /** |
||
13 | * @var SymfonyContainerAdapter |
||
14 | */ |
||
15 | private $symfonyContainerAdapter; |
||
16 | |||
17 | protected function setUp() |
||
26 | |||
27 | public function testParameters() |
||
32 | |||
33 | /** |
||
34 | * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException |
||
35 | */ |
||
36 | public function testNonExistingParameters() |
||
40 | |||
41 | public function testServices() |
||
46 | |||
47 | /** |
||
48 | * @expectedException \Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException |
||
49 | */ |
||
50 | public function testNonExistingService() |
||
55 | |||
56 | /** |
||
57 | * @expectedException \Symplify\NetteAdapterForSymfonyBundles\Exception\UnsupportedApiException |
||
58 | */ |
||
59 | public function testUnsupportedMethodsSet() |
||
63 | |||
64 | /** |
||
65 | * @expectedException \Symplify\NetteAdapterForSymfonyBundles\Exception\UnsupportedApiException |
||
66 | */ |
||
67 | public function testUnsupportedMethodsSetParameter() |
||
71 | |||
72 | /** |
||
73 | * @expectedException \Symplify\NetteAdapterForSymfonyBundles\Exception\UnsupportedApiException |
||
74 | */ |
||
75 | public function testUnsupportedMethodsInitialized() |
||
79 | } |
||
80 |