function FormStateDecoratorBaseTest::testSetAlwaysProcess

Tests set always process.

@legacy-covers ::setAlwaysProcess

Attributes

#[DataProvider('providerSingleBooleanArgument')]

File

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

Class

FormStateDecoratorBaseTest
Tests Drupal\Core\Form\FormStateDecoratorBase.

Namespace

Drupal\Tests\Core\Form

Code

public function testSetAlwaysProcess($always_process) : void {
  $this->decoratedFormState
    ->setAlwaysProcess($always_process)
    ->shouldBeCalled();
  $this->assertSame($this->formStateDecoratorBase, $this->formStateDecoratorBase
    ->setAlwaysProcess($always_process));
}

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