function SessionTestCase::assertSessionCookie

Assert whether the SimpleTest browser sent a session cookie.

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

File

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

Class

SessionTestCase
@file Provides SimpleTests for core session handling functionality.

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.');
  }
}