/**
  * {@inheritdoc}
  */
 public function isExecuted()
 {
     return $this->decoratedFormState->isExecuted();
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public function isExecuted()
 {
     return $this->mainFormState->isExecuted();
 }
 /**
  * @covers ::isExecuted
  *
  * @dataProvider providerSingleBooleanArgument
  *
  * @param bool $executed
  */
 public function testIsExecuted($executed)
 {
     $this->decoratedFormState->isExecuted()->willReturn($executed)->shouldBeCalled();
     $this->assertSame($executed, $this->formStateDecoratorBase->isExecuted());
 }