コード例 #1
0
ファイル: BootstrapAbstractTest.php プロジェクト: netvlies/zf
 /**
  * @expectedException Zend_Application_Bootstrap_Exception
  */
 public function testDependencyTrackingShouldDetectCircularDependencies()
 {
     // require_once dirname(__FILE__) . '/../_files/BootstrapBaseCircularDependency.php';
     $bootstrap = new BootstrapBaseCircularDependency($this->application);
     $bootstrap->bootstrap();
 }
コード例 #2
0
 /**
  * @expectedException Zend_Application_Bootstrap_Exception
  */
 public function testDependencyTrackingShouldDetectCircularDependencies()
 {
     $bootstrap = new BootstrapBaseCircularDependency($this->application);
     $bootstrap->bootstrap();
 }