public function AppendStreamTest::testValidatesSeekType in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/AppendStreamTest.php \GuzzleHttp\Tests\Psr7\AppendStreamTest::testValidatesSeekType()
@expectedException \RuntimeException @expectedExceptionMessage The AppendStream can only seek with SEEK_SET
File
- vendor/
guzzlehttp/ psr7/ tests/ AppendStreamTest.php, line 29
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testValidatesSeekType() {
$a = new AppendStream();
$a
->seek(100, SEEK_CUR);
}