/**
  * @covers       CollectionType\Map\MapAbstract::equalType
  * @covers       CollectionType\Map\MapAbstract::__construct
  * @covers       CollectionType\Common\KeyTypeTrait::validateValueForKeyType
  * @covers       CollectionType\Common\ValueTypeTrait::validateValueForValueType
  */
 public function testEqualTypeForForCorrectKeyTypeAndCorrectValueType()
 {
     $result = $this->map->equalType($this->dummyKeyType->reveal(), $this->dummyValueType->reveal());
     $this->assertTrue($result);
 }