예제 #1
0
 public function testKeyTypeMatters()
 {
     $map = new ArrayOrderedMap();
     $map->insert('42', 100);
     $this->setExpectedException(KeyNotFoundException::class);
     $map->get(42);
 }