public function testGetsAndSetsView()
 {
     $this->_paginator->setView(new Zend_View());
     $this->assertType('Zend_View_Interface', $this->_paginator->getView());
 }
Ejemplo n.º 2
0
 public function testGetsAndSetsView()
 {
     $this->_paginator->setView(new View\PhpRenderer());
     $this->assertInstanceOf('Zend\\View\\Renderer', $this->_paginator->getView());
 }
Ejemplo n.º 3
0
 public function testGetsAndSetsView()
 {
     $this->_paginator->setView(new Zend_View());
     $this->assertTrue($this->_paginator->getView() instanceof Zend_View_Interface);
 }
Ejemplo n.º 4
0
 public function testGetsAndSetsView()
 {
     $this->_paginator->setView(new View\View());
     $this->assertType('Zend\\View\\ViewEngine', $this->_paginator->getView());
 }
Ejemplo n.º 5
0
 public function testGetSetView()
 {
     $this->_restorePaginatorDefaults();
     $this->_paginator->setView(new Zend_View());
     $this->assertType('Zend_View_Interface', $this->_paginator->getView());
 }