public function SessionTest::testGetId

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/SessionTest.php, line 181

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testGetId() {
  $this
    ->assertEquals('', $this->session
    ->getId());
  $this->session
    ->start();
  $this
    ->assertNotEquals('', $this->session
    ->getId());
}