/**
  * @covers ::getRedirect
  *
  * @dataProvider providerGetRedirect
  *
  * @param bool $expected
  */
 public function testGetRedirect($expected)
 {
     $this->decoratedFormState->getRedirect()->willReturn($expected)->shouldBeCalled();
     $this->assertSame($expected, $this->formStateDecoratorBase->getRedirect());
 }