public function testKeySet() { // Remove the following lines when you implement this test. $set = $this->object->keySet(); $this->assertTrue($set->contains(0)); }
public function testKeyset() { $arr = ['a' => '111']; $hash = new HashMap($arr); $this->assertEquals(['a'], $hash->keySet()); }