public function RequestTest::testGetServer in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/browser-kit/Tests/RequestTest.php \Symfony\Component\BrowserKit\Tests\RequestTest::testGetServer()
File
- vendor/
symfony/ browser-kit/ Tests/ RequestTest.php, line 48
Class
Namespace
Symfony\Component\BrowserKit\TestsCode
public function testGetServer() {
$request = new Request('http://www.example.com/', 'get', array(), array(), array(), array(
'foo' => 'bar',
));
$this
->assertEquals(array(
'foo' => 'bar',
), $request
->getServer(), '->getServer() returns the server parameters of the request');
}