Esempio n. 1
0
 public function testErrorNoExtendsSection()
 {
     try {
         $array = Zend_Config_Xml::load($this->_configFile, 'extendserror');
         $this->fail('An expected Zend_Config_Exception has not been raised');
     } catch (Zend_Config_Exception $expected) {
         $this->assertContains('cannot be found', $expected->getMessage());
     }
 }