public function ConfigDependenciesTest::testOnDependencyRemovalRemoveUnrelatedDependency in Drupal 10
Same name and namespace in other branches
- 8 core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php \Drupal\Tests\rest\Kernel\Entity\ConfigDependenciesTest::testOnDependencyRemovalRemoveUnrelatedDependency()
- 9 core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php \Drupal\Tests\rest\Kernel\Entity\ConfigDependenciesTest::testOnDependencyRemovalRemoveUnrelatedDependency()
@covers ::onDependencyRemoval @covers ::onDependencyRemovalForMethodGranularity @covers ::onDependencyRemovalForResourceGranularity
@dataProvider providerBasicDependencies
File
- core/
modules/ rest/ tests/ src/ Kernel/ Entity/ ConfigDependenciesTest.php, line 45
Class
- ConfigDependenciesTest
- @coversDefaultClass \Drupal\rest\Entity\ConfigDependencies
Namespace
Drupal\Tests\rest\Kernel\EntityCode
public function testOnDependencyRemovalRemoveUnrelatedDependency(array $configuration) {
$config_dependencies = new ConfigDependencies([
'json' => 'serialization',
], [
'basic_auth' => 'basic_auth',
]);
$rest_config = RestResourceConfig::create($configuration);
$this
->assertFalse($config_dependencies
->onDependencyRemoval($rest_config, [
'module' => [
'node',
],
]));
$this
->assertEquals($configuration['configuration'], $rest_config
->get('configuration'));
}