Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testGettersSetters() |
||
26 | { |
||
27 | $loader = new LoevgaardConsignorShipmentServerExtension(); |
||
28 | $config = $this->getEmptyConfig(); |
||
29 | $container = new ContainerBuilder(); |
||
30 | $loader->load([$config], $container); |
||
31 | |||
32 | $this->assertSame($config['actor'], $container->getParameter('loevgaard_consignor_shipment_server.actor')); |
||
33 | $this->assertSame($config['key'], $container->getParameter('loevgaard_consignor_shipment_server.key')); |
||
34 | } |
||
35 | |||
50 |