/**
  * @covers ::rebuildForm
  */
 public function testRebuildForm()
 {
     $form = [];
     $form_state = $this->getMock(FormStateInterface::class);
     $form_state->expects($this->once())->method('setRebuild')->with(TRUE);
     $this->sut->rebuildForm($form, $form_state);
 }