function RouteCompilerTest::testGetFit

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

Tests RouteCompiler::getFit().

@dataProvider providerTestGetFit

Parameters

string $path: A path whose fit will be calculated in the test.

int $expected: The expected fit returned by RouteCompiler::getFit()

File

core/tests/Drupal/Tests/Core/Routing/RouteCompilerTest.php, line 26

Class

RouteCompilerTest
@coversDefaultClass \Drupal\Core\Routing\RouteCompiler @group Routing

Namespace

Drupal\Tests\Core\Routing

Code

public function testGetFit($path, $expected) {
    $route_compiler = new RouteCompiler();
    $result = $route_compiler->getFit($path);
    $this->assertSame($expected, $result);
}

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