You are here

public function MockFileSessionStorageTest::testGetId in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Tests/Session/Storage/MockFileSessionStorageTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\MockFileSessionStorageTest::testGetId()

File

vendor/symfony/http-foundation/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());
}