Add cover annotation
This commit is contained in:
parent
92499c1923
commit
d7df02fd94
3 changed files with 9 additions and 0 deletions
|
|
@ -15,6 +15,9 @@ class OggTest extends \PHPUnit_Framework_TestCase
|
|||
$this->object = new Ogg(320, 320);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers FFMpeg\Format\Video\Ogg::__construct
|
||||
*/
|
||||
public function testConstruct()
|
||||
{
|
||||
$this->assertInstanceOf('\\FFMpeg\\Format\\DefaultVideoFormat', $this->object);
|
||||
|
|
|
|||
|
|
@ -39,6 +39,9 @@ class WebMTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertTrue(is_scalar($this->object->getExtraParams()));
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers FFMpeg\Format\Video\WebM::__construct
|
||||
*/
|
||||
public function testConstruct()
|
||||
{
|
||||
$this->assertInstanceOf('\\FFMpeg\\Format\\DefaultVideoFormat', $this->object);
|
||||
|
|
|
|||
|
|
@ -15,6 +15,9 @@ class X264Test extends \PHPUnit_Framework_TestCase
|
|||
$this->object = new X264(320, 320);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers FFMpeg\Format\Video\X264::__construct
|
||||
*/
|
||||
public function testConstruct()
|
||||
{
|
||||
$this->assertInstanceOf('\\FFMpeg\\Format\\DefaultVideoFormat', $this->object);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue