Redaxscript\Tests\RequestTest::testServer PHP Method

testServer() public method

testServer
Since: 2.2.0
public testServer ( )
    public function testServer()
    {
        /* setup */
        $this->_request->setServer('testKey', 'testValue');
        /* actual */
        $actual = $this->_request->getServer('testKey');
        /* compare */
        $this->assertEquals('testValue', $actual);
    }