public function SubformStateTest::providerTestSetValues in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerTestSetValues()
Provides data to self::testSetValues().
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ SubformStateTest.php, line 201
Class
- SubformStateTest
- @coversDefaultClass \Drupal\Core\Form\SubformState
Namespace
Drupal\Tests\Core\FormCode
public function providerTestSetValues() {
$data = [];
$data['exist'] = [
[
'dog',
],
[],
[
'foo' => 'bar',
'dog' => [],
],
];
return $data;
}