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()); } }