/**
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage The number must be greater than 0, but got -5.
  */
 public function testDropRightWithNegativeIndex()
 {
     $this->seq->dropRight(-5);
 }