You are here

public function SubformStateTest::providerTestSetValues in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerTestSetValues()
  2. 9 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 205

Class

SubformStateTest
@coversDefaultClass \Drupal\Core\Form\SubformState

Namespace

Drupal\Tests\Core\Form

Code

public function providerTestSetValues() {
  $data = [];
  $data['exist'] = [
    [
      'dog',
    ],
    [],
    [
      'foo' => 'bar',
      'dog' => [],
    ],
  ];
  return $data;
}