예제 #1
0
파일: ViewTest.php 프로젝트: jsnshrmn/Suma
 /**
  * @group ZF-5748
  */
 public function testLfiProtectionFlagMayBeDisabledViaMethodCall()
 {
     $view = new Zend_View();
     $view->setLfiProtection(false);
     $this->assertFalse($view->isLfiProtectionOn());
 }