function FormStateDecoratorBaseTest::testSetAlwaysProcess

@covers ::setAlwaysProcess

@dataProvider providerSingleBooleanArgument

File

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

Class

FormStateDecoratorBaseTest
@coversDefaultClass \Drupal\Core\Form\FormStateDecoratorBase[[api-linebreak]]

Namespace

Drupal\Tests\Core\Form

Code

public function testSetAlwaysProcess($always_process) {
  $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.