public function testCanAddPathWithNamespace()
 {
     $template = new ZendView();
     $template->addPath(__DIR__ . '/TestAsset', 'test');
     $paths = $template->getPaths();
     $this->assertInternalType('array', $paths);
     $this->assertEquals(1, count($paths));
     $this->assertTemplatePath(__DIR__ . '/TestAsset/', $paths[0]);
     $this->assertTemplatePathString(__DIR__ . '/TestAsset/', $paths[0]);
     $this->assertTemplatePathNamespace('test', $paths[0]);
 }
 /**
  * @depends testCallingFactoryWithNoConfigReturnsZendViewInstance
  */
 public function testUnconfiguredZendViewInstanceContainsNoPaths(ZendView $view)
 {
     $paths = $view->getPaths();
     $this->assertInternalType('array', $paths);
     $this->assertEmpty($paths);
 }