public function testOffsetUnset2()
 {
     $this->object->setKeyValue('k1');
     $this->object->offsetUnset('A');
     $this->assertEquals(array('B' => 'v,1,B', 'C' => 'v,1,C'), $this->object->get());
 }