/**
  * @testdox delete() removes an item by name
  */
 public function testDelete()
 {
     $collection = new NormalizedCollection();
     $collection->add('foobar');
     $collection->delete('foobar');
     $this->assertFalse($collection->exists('foobar'));
 }