Inject Video at Frame construction

This commit is contained in:
Romain Neutron 2013-09-04 19:50:38 +02:00
commit 5814eb3085
4 changed files with 29 additions and 9 deletions

View file

@ -122,10 +122,16 @@ class TestCase extends \PHPUnit_Framework_TestCase
->getMock();
}
protected function getVideoMock()
protected function getVideoMock($filename = null)
{
return $this->getMockBuilder('FFMpeg\Media\Video')
$video = $this->getMockBuilder('FFMpeg\Media\Video')
->disableOriginalConstructor()
->getMock();
$video->expects($this->any())
->method('getFilename')
->will($this->returnValue($filename));
return $video;
}
}