Lines Matching defs:Stream
2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\AsyncReadStream;
5 use GuzzleHttp\Stream\BufferStream;
6 use GuzzleHttp\Stream\FnStream;
7 use GuzzleHttp\Stream\Stream;
19 Stream::factory(),
29 Stream::factory(),
36 $a = new AsyncReadStream(Stream::factory(), [
144 $this->assertInstanceOf('GuzzleHttp\Stream\BufferStream', $buffer);
145 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
153 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
159 $this->assertInstanceOf('GuzzleHttp\Stream\NullStream', $buffer);
160 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
166 $this->assertInstanceOf('GuzzleHttp\Stream\DroppingStream', $buffer);
167 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
184 $this->assertInstanceOf('GuzzleHttp\Stream\FnStream', $buffer);
185 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);