public function NativeSessionStorageTest::testGetId

File

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

Class

NativeSessionStorageTest
Test class for NativeSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

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