You are here

public function SubformStateTest::providerGetValues in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerGetValues()
  2. 10 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerGetValues()

Provides data to self::testGetValues().

File

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

Class

SubformStateTest
@coversDefaultClass \Drupal\Core\Form\SubformState

Namespace

Drupal\Tests\Core\Form

Code

public function providerGetValues() {
  $data = [];
  $data['exist'] = [
    [
      'dog',
    ],
    $this->formStateValues['dog'],
  ];
  return $data;
}