Exemplo n.º 1
0
 public function testSpecifyingDefaultProxy()
 {
     $expected = array('breadcrumbs' => $this->_getExpected('bc/default.html'), 'menu' => $this->_getExpected('menu/default1.html'));
     $actual = array();
     // result
     $this->_helper->setDefaultProxy('breadcrumbs');
     $actual['breadcrumbs'] = $this->_helper->render($this->_nav1);
     $this->_helper->setDefaultProxy('menu');
     $actual['menu'] = $this->_helper->render($this->_nav1);
     $this->assertEquals($expected, $actual);
 }