function DemoUmamiProfileTest::testConfig
Tests the profile supplied configuration is the same after installation.
File
- 
              core/profiles/ demo_umami/ tests/ src/ Functional/ DemoUmamiProfileTest.php, line 50 
Class
- DemoUmamiProfileTest
- Tests demo_umami profile.
Namespace
Drupal\Tests\demo_umami\FunctionalCode
public function testConfig() {
  // Just connect directly to the config table so we don't need to worry about
  // the cache layer.
  $active_config_storage = $this->container
    ->get('config.storage');
  $default_config_storage = new FileStorage($this->container
    ->get('extension.list.profile')
    ->getPath('demo_umami') . '/' . InstallStorage::CONFIG_INSTALL_DIRECTORY, InstallStorage::DEFAULT_COLLECTION);
  $this->assertDefaultConfig($default_config_storage, $active_config_storage);
  $default_config_storage = new FileStorage($this->container
    ->get('extension.list.profile')
    ->getPath('demo_umami') . '/' . InstallStorage::CONFIG_OPTIONAL_DIRECTORY, InstallStorage::DEFAULT_COLLECTION);
  $this->assertDefaultConfig($default_config_storage, $active_config_storage);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
