/**
  * Tests the offsetUnset() method.
  */
 public function testOffsetUnset()
 {
     $bag = new ArrayAttributeBag('foobar_storageKey');
     $bag->set('foo', 'bar');
     unset($bag['foo']);
     $this->assertFalse($bag->has('foo'));
 }