public function FormStateTest::testGetValues in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetValues()
- 10 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\FormCode
public function testGetValues() {
$values = [
'foo' => 'bar',
];
$form_state = new FormState();
$form_state
->setValues($values);
$this
->assertSame($values, $form_state
->getValues());
}