function ProtocolVersionCacheContextTest::testGetContext
Tests get context.
@legacy-covers ::getContext
Attributes
#[DataProvider('providerTestGetContext')]
File
-
core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ ProtocolVersionCacheContextTest.php, line 27
Class
Namespace
Drupal\Tests\Core\Cache\ContextCode
public function testGetContext($protocol, $context) : void {
$request_stack = new RequestStack();
$request = Request::create('/');
$request->server
->set('SERVER_PROTOCOL', $protocol);
$request_stack->push($request);
$cache_context = new ProtocolVersionCacheContext($request_stack);
$this->assertSame($cache_context->getContext(), $context);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.