public function testDisablingTranslatorInjection()
 {
     $this->_helper->setTranslator($this->_getTranslator());
     $this->_helper->setInjectTranslator(false);
     $expected = $this->_getExpected('menu/default1.html');
     $actual = $this->_helper->render();
     $this->assertEquals($expected, $actual);
 }
Exemple #2
0
 public function testTranslatorMethods()
 {
     $translatorMock = $this->getMock('Zend\\I18n\\Translator\\Translator');
     $this->_helper->setTranslator($translatorMock, 'foo');
     $this->assertEquals($translatorMock, $this->_helper->getTranslator());
     $this->assertEquals('foo', $this->_helper->getTranslatorTextDomain());
     $this->assertTrue($this->_helper->hasTranslator());
     $this->assertTrue($this->_helper->isTranslatorEnabled());
     $this->_helper->setTranslatorEnabled(false);
     $this->assertFalse($this->_helper->isTranslatorEnabled());
 }