コード例 #1
0
ファイル: ArrTest.php プロジェクト: chromabits/nucleus
 public function testExchangeWithInvalid()
 {
     $input = [10, 30, 20];
     $this->setExpectedException(IndexOutOfBoundsException::class);
     Arr::exchange($input, 1, 99);
 }