コード例 #1
0
ファイル: HashMapTest.php プロジェクト: syaiful6/headbanger
 /**
  * @expectedException UnderflowException
  */
 public function testPopItemOnEmptyMap()
 {
     $map = new HashMap();
     $map->popItem();
 }