示例#1
0
 public function testInternalInitializersShouldRegisterResourceNames()
 {
     // require_once dirname(__FILE__) . '/../_files/ZfAppBootstrap.php';
     $bootstrap = new ZfAppBootstrap($this->application);
     $test = $bootstrap->getClassResourceNames();
     $resources = array('foo', 'bar', 'barbaz');
     $this->assertEquals($resources, $test);
 }
示例#2
0
 public function testInternalInitializersShouldRegisterResourceNames()
 {
     $bootstrap = new ZfAppBootstrap($this->application);
     $test = $bootstrap->getClassResourceNames();
     $resources = array('foo', 'bar', 'barbaz');
     $this->assertEquals($resources, $test);
 }