Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Media/Subdef/Specification/PdfSpecificationTest.php
2018-06-08 15:49:46 +04:00

17 lines
450 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\Media\Subdef\Specification;
use Alchemy\Phrasea\Media\Subdef\Specification\PdfSpecification;
class PdfTest extends \PHPUnit_Framework_TestCase
{
/**
* @covers Alchemy\Phrasea\Media\Subdef\Specification\PdfSpecification::getType
*/
public function testGetType()
{
$specs = new PdfSpecification();
$this->assertEquals(PdfSpecification::TYPE_PDF, $specs->getType());
}
}