Ejemplo n.º 1
0
 public function testHas()
 {
     $map = new MutableMap();
     $map->set('foo', 'bar');
     $this->assertTrue($map->has('foo'));
     $this->assertFalse($map->has('bar'));
 }