public function ThemeSettingsTest::testNoDefaultConfig in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php \Drupal\KernelTests\Core\Theme\ThemeSettingsTest::testNoDefaultConfig()
Tests that the $theme.settings default config file is optional.
File
- core/tests/ Drupal/ KernelTests/ Core/ Theme/ ThemeSettingsTest.php, line 55 
Class
- ThemeSettingsTest
- Tests theme settings functionality.
Namespace
Drupal\KernelTests\Core\ThemeCode
public function testNoDefaultConfig() {
  $name = 'stark';
  $path = $this->availableThemes[$name]
    ->getPath();
  $this
    ->assertFileNotExists("{$path}/" . InstallStorage::CONFIG_INSTALL_DIRECTORY . "/{$name}.settings.yml");
  $this->container
    ->get('theme_installer')
    ->install([
    $name,
  ]);
  $this
    ->assertNotNull(theme_get_setting('features.favicon', $name));
}