InflateStreamTest.php in Zircon Profile 8.0
Same filename and directory in other branches
Namespace
GuzzleHttp\Tests\Psr7File
vendor/guzzlehttp/psr7/tests/InflateStreamTest.phpView source
<?php
namespace GuzzleHttp\Tests\Psr7;
use GuzzleHttp\Psr7;
use GuzzleHttp\Psr7\InflateStream;
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);
}
}
Classes
Name | Description |
---|---|
InflateStreamtest |