You are here

public function FormStateTest::testGetValue in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetValue()

@covers ::getValue

@dataProvider providerTestGetValue

File

core/tests/Drupal/Tests/Core/Form/FormStateTest.php, line 174
Contains \Drupal\Tests\Core\Form\FormStateTest.

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState

Namespace

Drupal\Tests\Core\Form

Code

public function testGetValue($key, $expected, $default = NULL) {
  $form_state = (new FormState())
    ->setValues([
    'foo' => 'one',
    'bar' => array(
      'baz' => 'two',
    ),
  ]);
  $this
    ->assertSame($expected, $form_state
    ->getValue($key, $default));
}