function SessionTestCase::assertSessionEmpty in SimpleTest 7
Assert whether $_SESSION is empty at the beginning of the request.
1 call to SessionTestCase::assertSessionEmpty()
- SessionTestCase::testEmptyAnonymousSession in tests/
session.test - Test that empty anonymous sessions are destroyed.
File
- tests/
session.test, line 243 - Provides SimpleTests for core session handling functionality.
Class
- SessionTestCase
- @file Provides SimpleTests for core session handling functionality.
Code
function assertSessionEmpty($empty) {
if ($empty) {
$this
->assertIdentical($this
->drupalGetHeader('X-Session-Empty'), '1', t('Session was empty.'));
}
else {
$this
->assertIdentical($this
->drupalGetHeader('X-Session-Empty'), '0', t('Session was not empty.'));
}
}