class InflateStreamtest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/guzzlehttp/psr7/tests/InflateStreamTest.php \GuzzleHttp\Tests\Psr7\InflateStreamtest
Hierarchy
- class \GuzzleHttp\Tests\Psr7\InflateStreamtest extends \GuzzleHttp\Tests\Psr7\PHPUnit_Framework_TestCase
Expanded class hierarchy of InflateStreamtest
File
- vendor/
guzzlehttp/ psr7/ tests/ InflateStreamTest.php, line 7
Namespace
GuzzleHttp\Tests\Psr7View source
class InflateStreamtest extends \PHPUnit_Framework_TestCase {
public function testInflatesStreams() {
$content = gzencode('test');
$a = Psr7\stream_for($content);
$b = new InflateStream($a);
$this
->assertEquals('test', (string) $b);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InflateStreamtest:: |
public | function |