Exemplo n.º 1
0
 public function testLoad_setUnmodifiedWithDots()
 {
     $structure = new Structure();
     $structure->merge(array('param' => array('subparam' => 'value')), false);
     $this->assertEquals('value', $structure->get('param.subparam'));
     $this->assertFalse($structure->isModified('param.subparam'));
 }