Snc\RedisBundle\Tests\Session\Storage\Handler\RedisSessionHandlerTest::testSessionReading PHP Method

testSessionReading() public method

public testSessionReading ( )
    public function testSessionReading()
    {
        $this->redis->expects($this->once())->method('get')->with($this->equalTo('_symfony'));
        $handler = new RedisSessionHandler($this->redis, array(), null, false);
        $handler->read('_symfony');
    }