Example #1
0
 /**
  * @group ZF-5748
  */
 public function testLfiProtectionFlagMayBeDisabledViaMethodCall()
 {
     $view = new View();
     $view->setLfiProtection(false);
     $this->assertFalse($view->isLfiProtectionOn());
 }