Exemplo n.º 1
0
 public function testGetMethod()
 {
     $_SERVER['REQUEST_METHOD'] = 'POST';
     $this->assertEquals('POST', $this->_request->getMethod());
     $_SERVER['REQUEST_METHOD'] = 'GET';
     $this->assertEquals('GET', $this->_request->getMethod());
 }