function FormStateDecoratorBaseTest::testIsValidationEnforced
Same name and namespace in other branches
- 10 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsValidationEnforced()
- 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()
- main core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsValidationEnforced()
Tests is validation enforced.
Attributes
#[DataProvider('providerSingleBooleanArgument')]
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateDecoratorBaseTest.php, line 360
Class
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.