/**
  * @covers Kunstmaan\MediaBundle\Entity\Media::getLocation
  * @covers Kunstmaan\MediaBundle\Entity\Media::setLocation
  */
 public function testGetSetLocation()
 {
     $this->object->setLocation('local');
     $this->assertEquals('local', $this->object->getLocation());
 }