You are here

public function FormStateTest::providerTestGetRedirect 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::providerTestGetRedirect()
  2. 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::providerTestGetRedirect()

Provides test data for testing the getRedirect() method.

Return value

array Returns some test data.

File

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

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState

Namespace

Drupal\Tests\Core\Form

Code

public function providerTestGetRedirect() {
  $data = [];
  $data[] = [
    [],
    NULL,
  ];
  $redirect = new RedirectResponse('/example');
  $data[] = [
    [
      'redirect' => $redirect,
    ],
    $redirect,
  ];
  $data[] = [
    [
      'redirect' => new Url('test_route_b', [
        'key' => 'value',
      ]),
    ],
    new Url('test_route_b', [
      'key' => 'value',
    ]),
  ];
  $data[] = [
    [
      'programmed' => TRUE,
    ],
    NULL,
  ];
  $data[] = [
    [
      'rebuild' => TRUE,
    ],
    NULL,
  ];
  $data[] = [
    [
      'no_redirect' => TRUE,
    ],
    NULL,
  ];
  return $data;
}