public function ResponseTest::testGetUri in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/browser-kit/Tests/ResponseTest.php \Symfony\Component\BrowserKit\Tests\ResponseTest::testGetUri()
 
File
- vendor/
symfony/ browser-kit/ Tests/ ResponseTest.php, line 18  
Class
Namespace
Symfony\Component\BrowserKit\TestsCode
public function testGetUri() {
  $response = new Response('foo');
  $this
    ->assertEquals('foo', $response
    ->getContent(), '->getContent() returns the content of the response');
}