Exemple #1
0
 public function testSetConfig()
 {
     $this->assertEquals(false, $this->_renderer->getAutomaticRenderError());
     $config = new Config\Config(array('automaticRenderError' => true, 'unkownProperty' => 'aValue'));
     $this->_renderer->setConfig($config);
     $this->assertEquals(true, $this->_renderer->getAutomaticRenderError());
 }