コード例 #1
0
ファイル: SequenceTest.php プロジェクト: imunhatep/collection
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage The number must be greater than 0, but got -5.
  */
 public function testDropWithNegativeIndex()
 {
     $this->seq->drop(-5);
 }