function FormStateDecoratorBaseTest::testIsValidationEnforced
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsValidationEnforced()
- 8.9.x core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsValidationEnforced()
- 11.x core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsValidationEnforced()
@covers ::isValidationEnforced
@dataProvider providerSingleBooleanArgument
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateDecoratorBaseTest.php, line 373
Class
- FormStateDecoratorBaseTest
- @coversDefaultClass \Drupal\Core\Form\FormStateDecoratorBase
Namespace
Drupal\Tests\Core\FormCode
public function testIsValidationEnforced($must_validate) : void {
$this->decoratedFormState
->isValidationEnforced()
->willReturn($must_validate)
->shouldBeCalled();
$this->assertSame($must_validate, $this->formStateDecoratorBase
->isValidationEnforced());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.