/**
  * @covers ::getResponse
  */
 public function testGetResponse()
 {
     $response = $this->getMock(Response::class);
     $this->decoratedFormState->getResponse()->willReturn($response)->shouldBeCalled();
     $this->assertSame($response, $this->formStateDecoratorBase->getResponse());
 }