object = new Audio(); } /** * @covers Alchemy\Phrasea\Media\Subdef\Audio::getType */ public function testGetType() { $this->assertEquals(Subdef::TYPE_AUDIO, $this->object->getType()); } /** * @covers Alchemy\Phrasea\Media\Subdef\Audio::getDescription */ public function testGetDescription() { $this->assertTrue(is_string($this->object->getDescription())); } /** * @covers Alchemy\Phrasea\Media\Subdef\Audio::getMediaAlchemystSpec */ public function testGetMediaAlchemystSpec() { $this->assertInstanceOf('\\MediaAlchemyst\\Specification\\Audio', $this->object->getMediaAlchemystSpec()); } }