Esempio n. 1
0
 /**
  * Removing a config variable.
  *
  * @access public
  */
 public function testConfigRemovingVariable()
 {
     // Removing a config variable that does not exist...
     $this->assertFalse(Core\Config::remove('foo', 'doesNotExist'));
     // .. and one that does exist
     $this->assertTrue(Core\Config::remove('foo', 'bar'));
 }