Example #1
0
 public function testOffsetExists()
 {
     $this->assertTrue($this->buffer->offsetExists(0));
     $this->assertTrue($this->buffer->offsetExists(strlen($this->initialString) - 1));
     $this->assertFalse($this->buffer->offsetExists(strlen($this->initialString)));
     $this->assertFalse($this->buffer->offsetExists(-1));
 }