예제 #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testRemoveFrameShouldThrowExceptionIfOffsetNotExists()
 {
     $this->model->addFrame('image01.jpg');
     $this->model->addFrame('image02.jpg');
     $this->model->removeFrame(2);
 }