Redaxscript\Tests\RequestTest::testSession PHP Method

testSession() public method

testSession
Since: 2.6.2
public testSession ( )
    public function testSession()
    {
        /* setup */
        $this->_request->setSession('testKey', 'testValue');
        $this->_request->refreshSession();
        /* actual */
        $actual = $this->_request->getSession('testKey');
        /* compare */
        $this->assertEquals('testValue', $actual);
    }