Example #1
0
 /**
  * @covers Phossa\Route\Context\Request::getServerInfo
  */
 public function testGetServerInfo()
 {
     $server = $this->object->getServerInfo();
     $this->assertArrayHasKey('REQUEST_URI', $server);
     $this->assertEquals('/user/list/1234?id=phossa', $this->object->getServerInfo('request_uri'));
 }