function FormStateDecoratorBaseTest::testGetErrors
Tests get errors.
@legacy-covers ::getErrors
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateDecoratorBaseTest.php, line 1496
Class
Namespace
Drupal\Tests\Core\FormCode
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.