public function testInternalIntializersShouldBeRegisteredAsClassResources()
 {
     $bootstrap = new TestAsset\ZfAppBootstrap($this->application);
     $test = $bootstrap->getClassResources();
     $resources = array('foo' => '_initFoo', 'bar' => '_initBar', 'barbaz' => '_initBarbaz');
     $this->assertEquals($resources, $test);
 }