Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function testWhenStyleNameIsSpecified_getStyleNameReturnsIt() { |
||
35 | $parser = new WmsOverlayParser(); |
||
36 | |||
37 | $overlay = $parser->parse( |
||
38 | 'http://maps.imr.no:80/geoserver/wms? vulnerable_areas:Identified_coral_area coral_identified_areas' |
||
39 | ); |
||
40 | |||
41 | $this->assertSame( |
||
42 | 'coral_identified_areas', |
||
43 | $overlay->getWmsStyleName() |
||
44 | ); |
||
45 | } |
||
46 | |||
55 |