function FormStateValuesTraitTest::testGetValue

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

@covers ::getValue

@dataProvider providerGetValue

File

core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php, line 44

Class

FormStateValuesTraitTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Form%21FormStateValuesTrait.php/trait/FormStateValuesTrait/8.9.x" title="Provides methods to manage form state values." class="local">\Drupal\Core\Form\FormStateValuesTrait</a>

Namespace

Drupal\Tests\Core\Form

Code

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

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