コード例 #1
0
ファイル: BootstrapAbstractTest.php プロジェクト: netvlies/zf
 public function testConstructorShouldAllowPassingAnotherBootstrapObject()
 {
     // require_once dirname(__FILE__) . '/../_files/ZfAppBootstrap.php';
     $bootstrap1 = new ZfAppBootstrap($this->application);
     $bootstrap2 = new ZfAppBootstrap($bootstrap1);
     $this->assertSame($bootstrap1, $bootstrap2->getApplication());
 }
コード例 #2
0
 public function testConstructorShouldAllowPassingAnotherBootstrapObject()
 {
     $bootstrap1 = new ZfAppBootstrap($this->application);
     $bootstrap2 = new ZfAppBootstrap($bootstrap1);
     $this->assertSame($bootstrap1, $bootstrap2->getApplication());
 }