public function MockArraySessionStorageTest::testStart

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/MockArraySessionStorageTest.php, line 66

Class

MockArraySessionStorageTest
Test class for MockArraySessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

public function testStart() {
  $this
    ->assertEquals('', $this->storage
    ->getId());
  $this->storage
    ->start();
  $id = $this->storage
    ->getId();
  $this
    ->assertNotEquals('', $id);
  $this->storage
    ->start();
  $this
    ->assertEquals($id, $this->storage
    ->getId());
}