function FormStateValuesTraitTest::testSetValue

Tests set value.

@legacy-covers ::setValue

Attributes

#[DataProvider('providerSetValue')]

File

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

Class

FormStateValuesTraitTest
Tests Drupal\Core\Form\FormStateValuesTrait.

Namespace

Drupal\Tests\Core\Form

Code

public function testSetValue($key, $value, $expected) : void {
  $form_state = (new FormStateValuesTraitStub())->setValues([
    'bar' => 'wrong',
  ]);
  $form_state->setValue($key, $value);
  $this->assertSame($expected, $form_state->getValues());
}

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