public function testSetValue2()
 {
     $c = new Configuration(array('foo' => array('bar' => 42, 'baz' => 'something')));
     $this->assertEquals(42, $c->getValue('foo/bar'));
     $c->setValue('foo/bar', 'other');
     $this->assertEquals('other', $c->getValue('foo/bar'));
 }