Ejemplo n.º 1
0
 public function testSetNotExistentKeyOfTypeConfig()
 {
     $config = new Config([]);
     $config->set('aKey', 'aValue');
     $this->config->set('newKey', $config);
     $this->assertEquals('aValue', $this->config->get('newKey')->get('aKey'));
 }