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