mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
17 lines
450 B
PHP
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());
|
|
}
|
|
} |