コード例 #1
0
ファイル: MutableArrayTest.php プロジェクト: mrcoco/Arrayzy
 /**
  * @expectedException \LogicException
  */
 public function testGetRandomKeyLogicException()
 {
     $ma = new MutableArray(['a']);
     $ma->getRandomKey();
 }