public function ConfigTest::testSetData in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::testSetData()
@covers ::setData @dataProvider nestedDataProvider
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigTest.php, line 119
Class
- ConfigTest
- Tests the Config.
Namespace
Drupal\Tests\Core\ConfigCode
public function testSetData($data) {
$this->config
->setData($data);
$this
->assertEquals($data, $this->config
->getRawData());
$this
->assertConfigDataEquals($data);
}