public function RouteCompilerTest::providerTestGetFit in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Routing/RouteCompilerTest.php \Drupal\Tests\Core\Routing\RouteCompilerTest::providerTestGetFit()
- 10 core/tests/Drupal/Tests/Core/Routing/RouteCompilerTest.php \Drupal\Tests\Core\Routing\RouteCompilerTest::providerTestGetFit()
Provides data for RouteCompilerTest::testGetFit()
Return value
array An array of arrays, where each inner array has the path whose fit is to be calculated as the first value and the expected fit as the second value.
File
- core/
tests/ Drupal/ Tests/ Core/ Routing/ RouteCompilerTest.php, line 40
Class
- RouteCompilerTest
- @coversDefaultClass \Drupal\Core\Routing\RouteCompiler @group Routing
Namespace
Drupal\Tests\Core\RoutingCode
public function providerTestGetFit() {
return [
[
'test',
1,
],
[
'/testwithleadingslash',
1,
],
[
'testwithtrailingslash/',
1,
],
[
'/testwithslashes/',
1,
],
[
'test/with/multiple/parts',
15,
],
[
'test/with/{some}/slugs',
13,
],
[
'test/very/long/path/that/drupal/7/could/not/have/handled',
2047,
],
];
}