Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testGetCountryMaxmindGeoIPBundleNotInstalled() |
||
12 | { |
||
13 | $container = $this->getMockBuilder("Symfony\Component\DependencyInjection\ContainerInterface")->getMock(); |
||
14 | $container->expects($this->once())->method("hasParameter")->with('maxmind_geoip_data_file_path')->will($this->returnValue(false)); |
||
15 | new MaxmindLookupAdapter($container); |
||
16 | } |
||
17 | |||
32 |