public function CacheabilityMetadataConfigOverrideTest::setUp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/config/src/Tests/CacheabilityMetadataConfigOverrideTest.php \Drupal\config\Tests\CacheabilityMetadataConfigOverrideTest::setUp()
Performs setup tasks before each individual test method is run.
Overrides KernelTestBase::setUp
File
- core/
modules/ config/ src/ Tests/ CacheabilityMetadataConfigOverrideTest.php, line 35 - Contains \Drupal\config\Tests\CacheabilityMetadataConfigOverrideTest.
Class
- CacheabilityMetadataConfigOverrideTest
- Tests if configuration overrides correctly affect cacheability metadata.
Namespace
Drupal\config\TestsCode
public function setUp() {
parent::setUp();
$this
->installEntitySchema('block_content');
$this
->installConfig([
'config_override_test',
]);
}