Example #1
0
 /**
  * @group ZF-7696
  */
 public function testUsingFallbackAutoloaderWithModulesShouldNotResultInFrontcontrollerNotFoundWarning()
 {
     // require_once dirname(__FILE__) . '/../_files/Zf7696Bootstrap.php';
     $this->autoloader->setFallbackAutoloader(true);
     $options = array('Resources' => array('modules' => array()));
     $this->application->setOptions($options);
     $bootstrap = new Zf7696Bootstrap($this->application);
     $bootstrap->bootstrap(array('modules'));
 }
 /**
  * @group ZF-7696
  * @group disable
  */
 public function testUsingFallbackAutoloaderWithModulesShouldNotResultInFrontcontrollerNotFoundWarning()
 {
     $this->autoloader->setFallbackAutoloader(true);
     $options = array('Resources' => array('modules' => array()));
     $this->application->setOptions($options);
     $bootstrap = new \Zf7696Bootstrap($this->application);
     $bootstrap->bootstrap(array('modules'));
 }