You are here

public function SubformStateTest::providerTestGetValueBroken 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::providerTestGetValueBroken()
  2. 9 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerTestGetValueBroken()

Provides data to self::testGetValueBroken().

File

core/tests/Drupal/Tests/Core/Form/SubformStateTest.php, line 176

Class

SubformStateTest
@coversDefaultClass \Drupal\Core\Form\SubformState

Namespace

Drupal\Tests\Core\Form

Code

public function providerTestGetValueBroken() {
  $data = [];
  $data['nested'] = [
    [
      'dog',
      'name',
    ],
    NULL,
    'Dodger',
  ];
  return $data;
}