| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 64 | public function processingProvider() { |
||
| 65 | $argLists = []; |
||
| 66 | |||
| 67 | $values = [ |
||
| 68 | 'locations' => '4,2', |
||
| 69 | 'width' => '420', |
||
| 70 | 'height' => '420', |
||
| 71 | 'service' => 'openlayers', |
||
| 72 | ]; |
||
| 73 | |||
| 74 | $expected = [ |
||
| 75 | 'coordinates' => [ Location::newTitledFromLatLon( 4, 2 ) ], |
||
| 76 | 'width' => '420px', |
||
| 77 | 'height' => '420px', |
||
| 78 | 'mappingservice' => 'openlayers', |
||
| 79 | ]; |
||
| 80 | |||
| 81 | $argLists[] = [ $values, $expected ]; |
||
| 82 | |||
| 83 | return $argLists; |
||
| 84 | } |
||
| 85 | |||
| 86 | } |