/**
  * @covers InputConverter::setLong
  * @todo I didn't understand this function utility
  */
 public function testSetLong()
 {
     $id = 12679;
     $map = array();
     $this->converter->setLong($map, "key", $id);
     $expected = array("key" => "12,679");
     $this->assertEquals($expected, $map);
 }