You are here

public function FunctionsTest::testThrowsWhenBodyCannotBeRewound in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/guzzlehttp/psr7/tests/FunctionsTest.php \GuzzleHttp\Tests\Psr7\FunctionsTest::testThrowsWhenBodyCannotBeRewound()

@expectedException \RuntimeException

File

vendor/guzzlehttp/psr7/tests/FunctionsTest.php, line 528

Class

FunctionsTest

Namespace

GuzzleHttp\Tests\Psr7

Code

public function testThrowsWhenBodyCannotBeRewound() {
  $body = Psr7\stream_for('abc');
  $body
    ->read(1);
  $body = FnStream::decorate($body, [
    'rewind' => function () {
      throw new \RuntimeException('a');
    },
  ]);
  $res = new Psr7\Response(200, [], $body);
  Psr7\rewind_body($res);
}