/**
  * @covers ::getFormObject
  */
 public function testGetFormObject()
 {
     $form = $this->getMock(FormInterface::class);
     $this->decoratedFormState->getFormObject()->willReturn($form)->shouldBeCalled();
     $this->assertSame($form, $this->formStateDecoratorBase->getFormObject());
 }