function RedirectDestinationTest::testGetAsArray
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest::testGetAsArray()
- 10 core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest::testGetAsArray()
- 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 \Drupal\Core\Routing\RedirectDestination @group Routing
Namespace
Drupal\Tests\Core\RoutingCode
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.