public function AbstractProxyTest::testIsSessionHandlerInterface in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\AbstractProxyTest::testIsSessionHandlerInterface()
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ Proxy/ AbstractProxyTest.php, line 76
Class
- AbstractProxyTest
- Test class for AbstractProxy.
Namespace
Symfony\Component\HttpFoundation\Tests\Session\Storage\ProxyCode
public function testIsSessionHandlerInterface() {
$this
->assertFalse($this->proxy
->isSessionHandlerInterface());
$sh = new ConcreteSessionHandlerInterfaceProxy();
$this
->assertTrue($sh
->isSessionHandlerInterface());
}