function FormStateDecoratorBaseTest::testGetErrors

Tests get errors.

@legacy-covers ::getErrors

File

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

Class

FormStateDecoratorBaseTest
Tests Drupal\Core\Form\FormStateDecoratorBase.

Namespace

Drupal\Tests\Core\Form

Code

public function testGetErrors() : void {
  $errors = [
    'foo' => 'bar',
  ];
  $this->decoratedFormState
    ->getErrors()
    ->willReturn($errors)
    ->shouldBeCalled();
  $this->assertSame($errors, $this->formStateDecoratorBase
    ->getErrors());
}

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