public function SessionTest::testStart

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

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