public function SessionTest::assertSessionEmpty in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/Session/SessionTest.php \Drupal\Tests\system\Functional\Session\SessionTest::assertSessionEmpty()
Assert whether $_SESSION is empty at the beginning of the request.
2 calls to SessionTest::assertSessionEmpty()
- SessionTest::testEmptyAnonymousSession in core/
modules/ system/ tests/ src/ Functional/ Session/ SessionTest.php - Tests that empty anonymous sessions are destroyed.
- SessionTest::testSessionBag in core/
modules/ system/ tests/ src/ Functional/ Session/ SessionTest.php - Tests session bag.
File
- core/
modules/ system/ tests/ src/ Functional/ Session/ SessionTest.php, line 388
Class
- SessionTest
- Drupal session handling tests.
Namespace
Drupal\Tests\system\Functional\SessionCode
public function assertSessionEmpty($empty) {
if ($empty) {
$this
->assertSession()
->responseHeaderEquals('X-Session-Empty', '1');
}
else {
$this
->assertSession()
->responseHeaderEquals('X-Session-Empty', '0');
}
}