public function testOffsetUnset()
 {
     $this->object->offsetUnset('1A');
     $this->assertEquals(2, $this->object->count());
     $this->assertFalse($this->object->offsetExists('1A'));
 }
 public function testDelete()
 {
     $this->object->delete();
     $this->assertEquals(0, $this->object->count());
 }