Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testGivenValidInput_parserReturnsOverlayObject() { |
||
19 | $parser = new WmsOverlayParser(); |
||
20 | |||
21 | $overlay = $parser->parse( 'http://demo.cubewerx.com/demo/cubeserv/cubeserv.cgi? Foundation.GTOPO30' ); |
||
22 | |||
23 | $this->assertSame( |
||
24 | 'http://demo.cubewerx.com/demo/cubeserv/cubeserv.cgi?', |
||
25 | $overlay->getWmsServerUrl() |
||
26 | ); |
||
27 | |||
28 | $this->assertSame( |
||
29 | 'Foundation.GTOPO30', |
||
30 | $overlay->getWmsLayerName() |
||
31 | ); |
||
32 | } |
||
33 | |||
55 |