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