Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Media/Subdef/GifTest.php
2015-06-15 19:30:51 +02:00

52 lines
1.1 KiB
PHP

<?php
namespace Alchemy\Tests\Phrasea\Media\Subdef;
use Alchemy\Phrasea\Media\Subdef\Gif;
use Alchemy\Phrasea\Media\Subdef\Subdef;
use Alchemy\Tests\Tools\TranslatorMockTrait;
/**
* @group functional
* @group legacy
*/
class GifTest extends \PhraseanetTestCase
{
use TranslatorMockTrait;
/**
* @var Gif
*/
protected $object;
public function setUp()
{
parent::setUp();
$this->object = new Gif($this->createTranslatorMock());
}
/**
* @covers Alchemy\Phrasea\Media\Subdef\Gif::getType
*/
public function testGetType()
{
$this->assertEquals(Subdef::TYPE_ANIMATION, $this->object->getType());
}
/**
* @covers Alchemy\Phrasea\Media\Subdef\Gif::getDescription
*/
public function testGetDescription()
{
$this->assertTrue(is_string($this->object->getDescription()));
}
/**
* @covers Alchemy\Phrasea\Media\Subdef\Gif::getMediaAlchemystSpec
*/
public function testGetMediaAlchemystSpec()
{
$this->assertInstanceOf('\\MediaAlchemyst\\Specification\\Animation', $this->object->getMediaAlchemystSpec());
}
}