function FormStateDecoratorBaseTest::testIsSubmitted

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsSubmitted()
  2. 9 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsSubmitted()
  3. 8.9.x core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsSubmitted()
  4. main core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testIsSubmitted()

Tests is submitted.

Attributes

#[DataProvider('providerSingleBooleanArgument')]

Parameters

bool $submitted: Any valid value for \Drupal\Core\Form\FormStateInterface::isSubmitted()'s return value.

File

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

Class

FormStateDecoratorBaseTest
Tests Drupal\Core\Form\FormStateDecoratorBase.

Namespace

Drupal\Tests\Core\Form

Code

public function testIsSubmitted($submitted) : void {
  $this->decoratedFormState
    ->isSubmitted()
    ->willReturn($submitted);
  $this->assertSame($submitted, $this->formStateDecoratorBase
    ->isSubmitted());
}

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