public function ParameterBindingTest::testGetValuePathPositionInPath in Drupal 7 to 8/9 Module Upgrader 8
File
- tests/
src/ Unit/ Routing/ ParameterBindingTest.php, line 82
Class
- ParameterBindingTest
- @group DMU.Routing
Namespace
Drupal\Tests\drupalmoduleupgrader\Unit\RoutingCode
public function testGetValuePathPositionInPath() {
$path = new PathUtility('foo/%node');
$binding = new ParameterBinding($path, $this->parameter, 1);
$value = $binding
->getValue();
$this
->assertInstanceOf('\\Drupal\\drupalmoduleupgrader\\Utility\\Path\\PathComponentInterface', $value);
$this
->assertEquals('%node', $value);
}