コード例 #1
0
ファイル: HttpTest.php プロジェクト: heiglandreas/zf2
 public function testGetServer()
 {
     if (isset($_SERVER['REQUEST_METHOD'])) {
         $this->assertEquals($_SERVER['REQUEST_METHOD'], $this->_request->getServer('REQUEST_METHOD'));
     }
     $this->assertEquals('foo', $this->_request->getServer('BAR', 'foo'));
     $this->assertEquals($_SERVER, $this->_request->getServer());
 }