You are here

public function ParameterBindingTest::testInPath in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Routing/ParameterBindingTest.php, line 38

Class

ParameterBindingTest
@group DMU.Routing

Namespace

Drupal\Tests\drupalmoduleupgrader\Unit\Routing

Code

public function testInPath() {
  $path = new PathUtility('foo/baz');
  $binding = new ParameterBinding($path, $this->parameter);
  $this
    ->assertFalse($binding
    ->inPath());
  $path = new PathUtility('foo/%node');
  $binding = new ParameterBinding($path, $this->parameter, 1);
  $this
    ->assertTrue($binding
    ->inPath());
}