public function ConfigTest::simpleDataProvider in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::simpleDataProvider()
- 9 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::simpleDataProvider()
Provides simple test data.
See also
\Drupal\Tests\Core\Config\ConfigTest::testClear()
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigTest.php, line 535
Class
- ConfigTest
- Tests the Config.
Namespace
Drupal\Tests\Core\ConfigCode
public function simpleDataProvider() {
return [
[
[
'a' => '1',
'b' => '2',
'c' => '3',
],
],
];
}