Esempio n. 1
0
 public function testInitSetConfigNoOverwrite()
 {
     $this->init->setConfig(array('General' => array('filter_type' => 'xml')), true);
     $this->init->setConfig(array('General' => array('filter_type' => 'json')));
     $this->assertEquals($this->init->config['General']['filter_type'], 'xml');
 }