示例#1
0
    /**
     * Make sure that setting HTTP method works as intended.
     *
     * @return void
     */
    public function testSetGetMethod()
    {
        $this->request->setMethod('POST');

        $this->assertEquals('POST', $this->request->getMethod());
    }