You are here

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

File

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

Class

ParameterBindingTest
@group DMU.Routing

Namespace

Drupal\Tests\drupalmoduleupgrader\Unit\Routing

Code

public function testGetValueNoArgumentNoDefaultvalue() {
  $path = new PathUtility('foo/%node');
  $binding = new ParameterBinding($path, $this->parameter);
  $this
    ->assertNull($binding
    ->getValue());
}