Ejemplo n.º 1
0
 function testOffsetExists()
 {
     $this->assertFalse($this->object->offsetExists(0));
     $this->object->append(1);
     $this->assertTrue($this->object->offsetExists(0));
     $this->assertFalse($this->object->offsetExists(1));
 }