Exemple #1
0
 /**
  * @depends  testSet
  * @param    Map
  * @return   void
  */
 public function testHasValue(Map $mapObject)
 {
     $this->assertTrue($mapObject->hasValue(self::$mapValue[0]));
     $this->assertTrue($mapObject->hasValue(self::$mapValue[1]));
     $this->assertTrue($mapObject->hasValue(self::$mapValue[2]));
     $this->assertFalse($mapObject->hasValue(self::$mapValue[3]));
 }