function RedirectDestinationTest::testGetAsArray

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest::testGetAsArray()
  2. 10 core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest::testGetAsArray()
  3. 11.x core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest::testGetAsArray()

@dataProvider providerGet

@covers ::getAsArray

File

core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php, line 88

Class

RedirectDestinationTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Routing%21RedirectDestination.php/class/RedirectDestination/9" title="Provides helpers for redirect destinations." class="local">\Drupal\Core\Routing\RedirectDestination</a> @group Routing

Namespace

Drupal\Tests\Core\Routing

Code

public function testGetAsArray(Request $request, $expected_destination) {
    $this->requestStack
        ->push($request);
    $this->setupUrlGenerator();
    // Call in twice in order to ensure it returns the same the next time.
    $this->assertEquals([
        'destination' => $expected_destination,
    ], $this->redirectDestination
        ->getAsArray());
    $this->assertEquals([
        'destination' => $expected_destination,
    ], $this->redirectDestination
        ->getAsArray());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.