function FormStateDecoratorBaseTest::testSetValueForElement

@covers ::setValueForElement

File

core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php, line 1214

Class

FormStateDecoratorBaseTest
@coversDefaultClass \Drupal\Core\Form\FormStateDecoratorBase[[api-linebreak]]

Namespace

Drupal\Tests\Core\Form

Code

public function testSetValueForElement() : void {
  $element = [
    '#type' => 'foo',
  ];
  $value = 'BAR';
  $this->decoratedFormState
    ->setValueForElement($element, $value)
    ->shouldBeCalled();
  $this->assertSame($this->formStateDecoratorBase, $this->formStateDecoratorBase
    ->setValueForElement($element, $value));
}

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