Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/ezimuel/guzzlestreams/tests/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/ezimuel/guzzlestreams/tests/InflateStreamTest.php

<?php
namespace GuzzleHttp\Tests\Stream;

use GuzzleHttp\Stream\InflateStream;
use GuzzleHttp\Stream\Stream;
use PHPUnit\Framework\TestCase;

class InflateStreamtest extends TestCase
{
    public function testInflatesStreams()
    {
        $content = gzencode('test');
        $a = Stream::factory($content);
        $b = new InflateStream($a);
        $this->assertEquals('test', (string) $b);
    }
}