public function testAllowsBoundedSeek()
 {
     $this->body->seek(100);
     $this->assertEquals(13, $this->body->ftell());
     $this->body->seek(0);
     $this->assertEquals(3, $this->body->ftell());
     $this->assertEquals(false, $this->body->seek(1000, SEEK_END));
 }