示例#1
0
 /**
  * Testing that the ConfigProvider reloadConfig method reloads the config from storage
  *
  * @since 2.0.1
  */
 public function testReloadConfig()
 {
     $this->configCopy->set('app.title', 'Testing');
     $this->assertEquals('Testing', $this->configCopy->get('app.title'), 'testing that the ConfigProvider reloadConfig method reloads the config from storage');
     $this->configCopy->reloadConfig();
     $this->assertEquals('Alpha Unit Tests', $this->configCopy->get('app.title'), 'testing that the ConfigProvider reloadConfig method reloads the config from storage');
 }