Exemplo n.º 1
0
 public function testGetSetFFProbe()
 {
     $ffprobe = $this->getFFProbeMock();
     $ffmpeg = new FFMpeg($this->getFFMpegDriverMock(), $ffprobe);
     $this->assertSame($ffprobe, $ffmpeg->getFFProbe());
     $anotherFFProbe = $this->getFFProbeMock();
     $ffmpeg->setFFProbe($anotherFFProbe);
     $this->assertSame($anotherFFProbe, $ffmpeg->getFFProbe());
 }