public function testZF414()
 {
     $config = new Zend_Config_Yaml($this->_iniFileAllSectionsConfig, null);
     $this->assertEquals(null, $config->getSectionName());
     $this->assertEquals(true, $config->areAllSectionsLoaded());
     $config = new Zend_Config_Yaml($this->_iniFileAllSectionsConfig, 'all');
     $this->assertEquals('all', $config->getSectionName());
     $this->assertEquals(false, $config->areAllSectionsLoaded());
     $config = new Zend_Config_Yaml($this->_iniFileAllSectionsConfig, array('staging', 'other_staging'));
     $this->assertEquals(array('staging', 'other_staging'), $config->getSectionName());
     $this->assertEquals(false, $config->areAllSectionsLoaded());
 }