コード例 #1
0
ファイル: StreamTest.php プロジェクト: easy-system/es-http
 public function testIsSeekableReturnsFalseForNonSeekableStream()
 {
     $stream = new Stream('http://google.com', 'rb');
     $this->assertFalse($stream->isSeekable());
 }