Redaxscript\Tests\RequestTest::testQuery PHP Method

testQuery() public method

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