예제 #1
0
 /**
  * Verify that the internal cursor position can be determined.
  */
 public function testDetermineInternalCursorPosition()
 {
     fwrite($this->stream, 'test');
     fseek($this->stream, 2);
     self::assertEquals(2, $this->manager->tell(), 'The internal cursor position was not determined properly.');
 }