object = new Ogg(320, 320); } /** * @covers FFMpeg\Format\Video\Ogg::__construct */ public function testConstruct() { $this->assertInstanceOf('\\FFMpeg\\Format\\DefaultVideoFormat', $this->object); } /** * @covers FFMpeg\Format\Video\Ogg::getAvailableAudioCodecs */ public function testGetAvailableAudioCodecs() { $this->object->setAudioCodec('libvorbis'); } /** * @covers FFMpeg\Format\Video\Ogg::getAvailableVideoCodecs */ public function testGetAvailableVideoCodecs() { $this->object->setVideoCodec('libtheora'); } }