function SessionTestCase::assertSessionCookie

7.x session.test SessionTestCase::assertSessionCookie($sent)

Assert whether the SimpleTest browser sent a session cookie.

1 call to SessionTestCase::assertSessionCookie()
SessionTestCase::testEmptyAnonymousSession in drupal-7.x/modules/simpletest/tests/session.test
Test that empty anonymous sessions are destroyed.

File

drupal-7.x/modules/simpletest/tests/session.test, line 268
Provides SimpleTests for core session handling functionality.

Class

SessionTestCase

Code

function assertSessionCookie($sent) {
  if ($sent) {
    $this->assertNotNull($this->session_id, 'Session cookie was sent.');
  }
  else {
    $this->assertNull($this->session_id, 'Session cookie was not sent.');
  }
}