public function AbstractProxyTest::testIsSessionHandlerInterface

File

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

Class

AbstractProxyTest
Test class for AbstractProxy.

Namespace

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

Code

public function testIsSessionHandlerInterface() {
  $this
    ->assertFalse($this->proxy
    ->isSessionHandlerInterface());
  $sh = new ConcreteSessionHandlerInterfaceProxy();
  $this
    ->assertTrue($sh
    ->isSessionHandlerInterface());
}