Пример #1
0
 public function testContainsAll()
 {
     // Remove the following lines when you implement this test.
     $this->assertTrue($this->object->containsAll($this->object));
     $map = new HashMap();
     $map->put(5, 5);
     $map->put(78, 54);
     $this->assertFalse($this->object->containsAll($map));
 }