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')); }