You are here

public function RequestTest::testGetContentWorksTwiceInDefaultMode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/RequestTest.php \Symfony\Component\HttpFoundation\Tests\RequestTest::testGetContentWorksTwiceInDefaultMode()

File

vendor/symfony/http-foundation/Tests/RequestTest.php, line 956

Class

RequestTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testGetContentWorksTwiceInDefaultMode() {
  $req = new Request();
  $this
    ->assertEquals('', $req
    ->getContent());
  $this
    ->assertEquals('', $req
    ->getContent());
}