Пример #1
0
 /**
  * @param string $description
  */
 public function setDescription($description)
 {
     $this->media->setDescription($description);
 }
Пример #2
0
 /**
  * @covers Kunstmaan\MediaBundle\Entity\Media::getDescription
  * @covers Kunstmaan\MediaBundle\Entity\Media::setDescription
  */
 public function testGetSetDescription()
 {
     $this->object->setDescription('Description of this picture');
     $this->assertEquals('Description of this picture', $this->object->getDescription());
 }