function EntityRevisionParamConverterTest::getTestRoute

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php \Drupal\Tests\Core\ParamConverter\EntityRevisionParamConverterTest::getTestRoute()
  2. 10 core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php \Drupal\Tests\Core\ParamConverter\EntityRevisionParamConverterTest::getTestRoute()
  3. 11.x core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php \Drupal\Tests\Core\ParamConverter\EntityRevisionParamConverterTest::getTestRoute()
1 call to EntityRevisionParamConverterTest::getTestRoute()
EntityRevisionParamConverterTest::testApplyingRoute in core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php
@covers ::applies

File

core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php, line 39

Class

EntityRevisionParamConverterTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21ParamConverter%21EntityRevisionParamConverter.php/class/EntityRevisionParamConverter/9" title="Parameter converter for upcasting entity revision IDs to full objects." class="local">\Drupal\Core\ParamConverter\EntityRevisionParamConverter</a> @group entity

Namespace

Drupal\Tests\Core\ParamConverter

Code

protected function getTestRoute() {
    $route = new Route('/test/{test_revision}');
    $route->setOption('parameters', [
        'test_revision' => [
            'type' => 'entity_revision:test',
        ],
    ]);
    return $route;
}

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