Example #1
0
 /**
  * @group ZF-8496
  */
 public function testBootstrapAutoloaderNamespaceShouldBeConfigurable()
 {
     $application = new Application\Application('testing', array('appnamespace' => 'Default'));
     $bootstrap = new Application\Bootstrap($application);
     $al = $bootstrap->getResourceLoader();
     $this->assertEquals('Default', $al->getNamespace());
 }