protected $policy;
/**
* {@inheritdoc}
*/
protected function setUp(): void
{ parent::
setUp();
$this->sessionConfiguration =
$this->
createMock('Drupal\Core\Session\SessionConfigurationInterface'
);
$this->policy =
new NoSessionOpen($this->sessionConfiguration
);
} /**
* Asserts that caching is allowed unless there is a session cookie present.
*
* @covers ::check
*/
public function testNoAllowUnlessSessionCookiePresent() { $request_without_session =
new Request();
$request_with_session = Request::
create('/', 'GET',
[],
['some-session-name' => 'some-session-id'
]);