You are here

public function FormStateTest::testGetValues in Drupal 10

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

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState

Namespace

Drupal\Tests\Core\Form

Code

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