public function MockFileSessionStorageTest::testGetId

File

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

Class

MockFileSessionStorageTest
Test class for MockFileSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

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