/**
  * @covers InputConverter::getBoolean
  */
 public function testGetBooleanNull()
 {
     $bool = null;
     $map = array('key' => $bool);
     $actual = $this->converter->getBoolean($map, "key");
     $this->assertNull($actual);
 }