예제 #1
0
 public function testRetrievingPluginResourcesShouldRetrieveConcreteInstances()
 {
     $bootstrap = new TestAsset\ZfAppBootstrap($this->application);
     $bootstrap->registerPluginResource('view');
     $test = $bootstrap->getPluginResources();
     foreach ($test as $type => $resource) {
         $this->assertTrue($resource instanceof Application\Resource);
     }
 }