function RouteTest::testRouteWithParamQuery

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Kernel/process/RouteTest.php \Drupal\Tests\migrate\Kernel\process\RouteTest::testRouteWithParamQuery()
  2. 8.9.x core/modules/migrate/tests/src/Kernel/process/RouteTest.php \Drupal\Tests\migrate\Kernel\process\RouteTest::testRouteWithParamQuery()
  3. 10 core/modules/migrate/tests/src/Kernel/process/RouteTest.php \Drupal\Tests\migrate\Kernel\process\RouteTest::testRouteWithParamQuery()

Tests Route plugin based on providerTestRoute() values.

@dataProvider providerTestRouteWithParamQuery

Parameters

mixed $value: Input value for the Route process plugin.

array $expected: The expected results from the Route transform process.

File

core/modules/migrate/tests/src/Kernel/process/RouteTest.php, line 203

Class

RouteTest
Tests the route process plugin.

Namespace

Drupal\Tests\migrate\Kernel\process

Code

public function testRouteWithParamQuery($value, $expected) : void {
    // Create a user so that user/1/edit is a valid path.
    $this->setUpCurrentUser();
    $this->installConfig([
        'user',
    ]);
    $actual = $this->doTransform($value);
    $this->assertSame($expected, $actual);
}

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