function FormStateTest::testGetValues

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetValues()
  2. 8.9.x core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetValues()
  3. 11.x core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetValues()

@covers ::setValues
@covers ::getValues

File

core/tests/Drupal/Tests/Core/Form/FormStateTest.php, line 421

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState[[api-linebreak]]

Namespace

Drupal\Tests\Core\Form

Code

public function testGetValues() : void {
  $values = [
    'foo' => 'bar',
  ];
  $form_state = new FormState();
  $form_state->setValues($values);
  $this->assertSame($values, $form_state->getValues());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.