public function testDisableCache() { $this->decoratedFormState->
disableCache() ->
shouldBeCalled();
$this->
assertSame($this->formStateDecoratorBase,
$this->formStateDecoratorBase->
disableCache());
} /**
* @covers ::setExecuted
*/
public function testSetExecuted() { $this->decoratedFormState->
setExecuted() ->
shouldBeCalled();
$this->
assertSame($this->formStateDecoratorBase,
$this->formStateDecoratorBase->
setExecuted());
} /**
* @covers ::isExecuted
*
* @dataProvider providerSingleBooleanArgument
*
* @param bool $executed
* Any valid value for \Drupal\Core\Form\FormStateInterface::isExecuted()'s
* return value.
*/