public function AbstractProxyTest::testIdException

@expectedException \LogicException

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php, line 136

Class

AbstractProxyTest
Test class for AbstractProxy.

Namespace

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

Code

public function testIdException() {
  $this->proxy
    ->setActive(true);
  $this->proxy
    ->setId('foo');
}