function LazyRouteCollectionTest::testCount
Same name in other branches
- 10 core/tests/Drupal/Tests/Core/Routing/LazyRouteCollectionTest.php \Drupal\Tests\Core\Routing\LazyRouteCollectionTest::testCount()
- 11.x core/tests/Drupal/Tests/Core/Routing/LazyRouteCollectionTest.php \Drupal\Tests\Core\Routing\LazyRouteCollectionTest::testCount()
@covers ::count
File
-
core/
tests/ Drupal/ Tests/ Core/ Routing/ LazyRouteCollectionTest.php, line 61
Class
- LazyRouteCollectionTest
- @coversDefaultClass \Drupal\Core\Routing\LazyRouteCollection
Namespace
Drupal\Tests\Core\RoutingCode
public function testCount() {
$this->routeProvider
->method('getRoutesByNames')
->with(NULL)
->willReturn($this->testRoutes);
$lazyRouteCollection = new LazyRouteCollection($this->routeProvider);
$this->assertEquals(2, $lazyRouteCollection->count());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.