/**
  * @covers Kunstmaan\RedirectBundle\Entity\Redirect::setPermanent
  * @covers Kunstmaan\RedirectBundle\Entity\Redirect::isPermanent
  */
 public function testGetSetPermanent()
 {
     $this->object->setPermanent(true);
     $this->assertTrue($this->object->isPermanent());
 }