function TourTest::testHasMatchingRoute
Same name in other branches
- 9 core/modules/tour/tests/src/Unit/Entity/TourTest.php \Drupal\Tests\tour\Unit\Entity\TourTest::testHasMatchingRoute()
- 10 core/modules/tour/tests/src/Unit/Entity/TourTest.php \Drupal\Tests\tour\Unit\Entity\TourTest::testHasMatchingRoute()
- 11.x core/modules/tour/tests/src/Unit/Entity/TourTest.php \Drupal\Tests\tour\Unit\Entity\TourTest::testHasMatchingRoute()
Tests \Drupal\tour\Entity\Tour::hasMatchingRoute().
@covers ::hasMatchingRoute
@dataProvider routeProvider
Parameters
array $routes: Array of routes as per the Tour::routes property.
string $route_name: The route name to match.
array $route_params: Array of route params.
bool $result: Expected result.
File
-
core/
modules/ tour/ tests/ src/ Unit/ Entity/ TourTest.php, line 29
Class
- TourTest
- @coversDefaultClass \Drupal\tour\Entity\Tour @group tour
Namespace
Drupal\Tests\tour\Unit\EntityCode
public function testHasMatchingRoute($routes, $route_name, $route_params, $result) {
$tour = $this->getMockBuilder('\\Drupal\\tour\\Entity\\Tour')
->disableOriginalConstructor()
->setMethods([
'getRoutes',
])
->getMock();
$tour->expects($this->any())
->method('getRoutes')
->will($this->returnValue($routes));
$this->assertSame($result, $tour->hasMatchingRoute($route_name, $route_params));
$tour->resetKeyedRoutes();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.