public function testSetMethodCanBeCalledOnAMap()
 {
     $testCase = new TestsCases\BaseTestCase();
     $testCase->addMapItem("a", "b");
     $testCase->setMapItems(array("c" => "d"));
     $this->assertEquals("d", $testCase->getMapItems()["c"]);
 }