示例#1
0
 public function testSetPosition()
 {
     $this->resource = fopen(__DIR__ . '/assets/non-font-file.txt', 'r');
     $stream = new Stream($this->resource);
     $stream->setPosition(1);
     $this->assertEquals(1, $stream->getPosition());
 }