public function LimitStreamTest::testClaimsConsumedWhenReadLimitIsReached in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/LimitStreamTest.php \GuzzleHttp\Tests\Psr7\LimitStreamTest::testClaimsConsumedWhenReadLimitIsReached()
File
- vendor/
guzzlehttp/ psr7/ tests/ LimitStreamTest.php, line 132
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testClaimsConsumedWhenReadLimitIsReached() {
$this
->assertFalse($this->body
->eof());
$this->body
->read(1000);
$this
->assertTrue($this->body
->eof());
}