public function testOffsetSet3()
 {
     $this->object->offsetSet('A', 'I');
     $this->object->offsetSet('B', 'II');
     $this->assertEquals('I', $this->object->offsetGet('A'));
     $this->assertEquals('II', $this->object->offsetGet('B'));
 }