/**
  * @covers ::setGroups
  */
 public function testSetGroups()
 {
     $groups = ['FOO' => 'BAR'];
     $this->decoratedFormState->setGroups($groups)->shouldBeCalled();
     $this->assertSame($this->formStateDecoratorBase, $this->formStateDecoratorBase->setGroups($groups));
 }