/**
  * @covers ::getSubmitHandlers
  */
 public function testGetSubmitHandlers()
 {
     $submit_handlers = ['FOO' => 'BAR'];
     $this->decoratedFormState->getSubmitHandlers()->willReturn($submit_handlers)->shouldBeCalled();
     $this->assertSame($submit_handlers, $this->formStateDecoratorBase->getSubmitHandlers());
 }