public function LimitStreamTest::testLengthLessOffsetWhenNoLimitSize in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/LimitStreamTest.php \GuzzleHttp\Tests\Psr7\LimitStreamTest::testLengthLessOffsetWhenNoLimitSize()
File
- vendor/
guzzlehttp/ psr7/ tests/ LimitStreamTest.php, line 160
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testLengthLessOffsetWhenNoLimitSize() {
$a = Psr7\stream_for('foo_bar');
$b = new LimitStream($a, -1, 4);
$this
->assertEquals(3, $b
->getSize());
}