You are here

class InflateStreamtest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Psr7
View 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