/**
  * @covers InputConverter::getPolygon
  * @covers InputConverter::getValue
  */
 public function testGetPolygonNull()
 {
     $map = array();
     $actual = $this->converter->getPolygon($map, "key");
     $this->assertNull($actual);
 }