function ConfigDependenciesTest::testOnDependencyRemovalForResourceGranularity
Same name in this branch
- 9 core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php \Drupal\Tests\rest\Kernel\Entity\ConfigDependenciesTest::testOnDependencyRemovalForResourceGranularity()
Same name in other branches
- 8.9.x core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php \Drupal\Tests\rest\Kernel\Entity\ConfigDependenciesTest::testOnDependencyRemovalForResourceGranularity()
- 10 core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php \Drupal\Tests\rest\Kernel\Entity\ConfigDependenciesTest::testOnDependencyRemovalForResourceGranularity()
- 11.x core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php \Drupal\Tests\rest\Kernel\Entity\ConfigDependenciesTest::testOnDependencyRemovalForResourceGranularity()
@covers ::onDependencyRemoval @covers ::onDependencyRemovalForResourceGranularity
@dataProvider providerOnDependencyRemovalForResourceGranularity
File
-
core/
modules/ hal/ tests/ src/ Kernel/ rest/ Entity/ ConfigDependenciesTest.php, line 205
Class
- ConfigDependenciesTest
- @coversDefaultClass \Drupal\rest\Entity\ConfigDependencies
Namespace
Drupal\Tests\hal\Kernel\rest\EntityCode
public function testOnDependencyRemovalForResourceGranularity(array $configuration, $module, $expected_configuration) {
assert(is_string($module));
assert($expected_configuration === FALSE || is_array($expected_configuration));
$config_dependencies = new ConfigDependencies([
'hal_json' => 'hal',
'json' => 'serialization',
], [
'basic_auth' => 'basic_auth',
]);
$rest_config = RestResourceConfig::create($configuration);
$this->assertSame(!empty($expected_configuration), $config_dependencies->onDependencyRemoval($rest_config, [
'module' => [
$module,
],
]));
if (!empty($expected_configuration)) {
$this->assertEquals($expected_configuration, $rest_config->get('configuration'));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.