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