You are here

public function AbstractProxyTest::testId in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\AbstractProxyTest::testId()

@runInSeparateProcess @preserveGlobalState disabled

File

vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php, line 182

Class

AbstractProxyTest
Test class for AbstractProxy.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy

Code

public function testId() {
  $this
    ->assertEquals(session_id(), $this->proxy
    ->getId());
  $this->proxy
    ->setId('foo');
  $this
    ->assertEquals('foo', $this->proxy
    ->getId());
  $this
    ->assertEquals(session_id(), $this->proxy
    ->getId());
}