You are here

public function FormStateDecoratorBaseTest::testGetErrors in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testGetErrors()

@covers ::getErrors

File

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

Class

FormStateDecoratorBaseTest
@coversDefaultClass \Drupal\Core\Form\FormStateDecoratorBase

Namespace

Drupal\Tests\Core\Form

Code

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