/**
  * @covers InputConverter::setString
  */
 public function testSetString()
 {
     $str = "Dashboard";
     $map = array();
     $this->converter->setString($map, "key", $str);
     $expected = array("key" => $str);
     $this->assertEquals($expected, $map);
 }