Redaxscript\Tests\RequestTest::testGlobal PHP Method

testGlobal() public method

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