You are here

public function FunctionsTest::testCalculatesHashThrowsWhenSeekFails in Zircon Profile 8

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

@expectedException \RuntimeException

File

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

Class

FunctionsTest

Namespace

GuzzleHttp\Tests\Psr7

Code

public function testCalculatesHashThrowsWhenSeekFails() {
  $s = new NoSeekStream(Psr7\stream_for('foobazbar'));
  $s
    ->read(2);
  Psr7\hash($s, 'md5');
}