mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
44 lines
997 B
PHP
44 lines
997 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Media\Subdef;
|
|
|
|
use Alchemy\Phrasea\Media\Subdef\Video;
|
|
use Alchemy\Phrasea\Media\Subdef\Subdef;
|
|
|
|
class VideoTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var Video
|
|
*/
|
|
protected $object;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->object = new Video;
|
|
}
|
|
|
|
/**
|
|
* @covers Alchemy\Phrasea\Media\Subdef\Video::getType
|
|
*/
|
|
public function testGetType()
|
|
{
|
|
$this->assertEquals(Subdef::TYPE_VIDEO, $this->object->getType());
|
|
}
|
|
|
|
/**
|
|
* @covers Alchemy\Phrasea\Media\Subdef\Video::getDescription
|
|
*/
|
|
public function testGetDescription()
|
|
{
|
|
$this->assertTrue(is_string($this->object->getDescription()));
|
|
}
|
|
|
|
/**
|
|
* @covers Alchemy\Phrasea\Media\Subdef\Video::getMediaAlchemystSpec
|
|
*/
|
|
public function testGetMediaAlchemystSpec()
|
|
{
|
|
$this->assertInstanceOf('\\MediaAlchemyst\\Specification\\Video', $this->object->getMediaAlchemystSpec());
|
|
}
|
|
}
|