You are here

public function FormStateTest::testGetRedirect in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetRedirect()
  2. 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testGetRedirect()

Tests the getRedirect() method.

@covers ::getRedirect

@dataProvider providerTestGetRedirect

File

core/tests/Drupal/Tests/Core/Form/FormStateTest.php, line 31
Contains \Drupal\Tests\Core\Form\FormStateTest.

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState

Namespace

Drupal\Tests\Core\Form

Code

public function testGetRedirect($form_state_additions, $expected) {
  $form_state = (new FormState())
    ->setFormState($form_state_additions);
  $redirect = $form_state
    ->getRedirect();
  $this
    ->assertEquals($expected, $redirect);
}