コード例 #1
0
ファイル: MutableMapTest.php プロジェクト: webcodr/collection
 public function testHas()
 {
     $map = new MutableMap();
     $map->set('foo', 'bar');
     $this->assertTrue($map->has('foo'));
     $this->assertFalse($map->has('bar'));
 }