Add cover annotation

This commit is contained in:
Romain Neutron 2012-04-13 14:26:40 +02:00
commit d7df02fd94
3 changed files with 9 additions and 0 deletions

View file

@ -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);

View file

@ -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);

View file

@ -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);