public function StreamDecoratorTraitTest::testThrowsWhenGetterNotImplemented in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/guzzlehttp/psr7/tests/StreamDecoratorTraitTest.php \GuzzleHttp\Tests\Psr7\StreamDecoratorTraitTest::testThrowsWhenGetterNotImplemented()
@expectedException \BadMethodCallException
File
- vendor/
guzzlehttp/ psr7/ tests/ StreamDecoratorTraitTest.php, line 125
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testThrowsWhenGetterNotImplemented() {
$s = new BadStream();
$s->stream;
}