function OffsetPageTest::setUp
Overrides UnitTestCase::setUp
File
-
core/
modules/ jsonapi/ tests/ src/ Unit/ Query/ OffsetPageTest.php, line 25
Class
- OffsetPageTest
- @coversDefaultClass \Drupal\jsonapi\Query\OffsetPage[[api-linebreak]] @group jsonapi
Namespace
Drupal\Tests\jsonapi\Unit\QueryCode
protected function setUp() : void {
parent::setUp();
$container = new Container();
$cache_context_manager = $this->prophesize(CacheContextsManager::class);
$cache_context_manager->assertValidTokens(Argument::any())
->willReturn(TRUE);
$container->set('cache_contexts_manager', $cache_context_manager->reveal());
\Drupal::setContainer($container);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.