/**
  * @covers chromephpManager::loadConfig
  */
 public function testLoadConfig()
 {
     $oDebugaxConfig = new Debugax_Config();
     $aResult = $oDebugaxConfig->getConfigFile();
     $oTestClass = oxNew('chromephpManager');
     $aConfig = $oTestClass->loadConfig();
     $this->assertType('array', $aConfig);
     $this->assertSame($aResult, $aConfig);
 }
 /**
  * Wir bekommen eine Array mit die Module Configuration
  * @author Rafal Wesolowski <*****@*****.**>
  * @return array
  */
 public function loadConfig()
 {
     $oDebugaxConfig = new Debugax_Config();
     return $oDebugaxConfig->getConfigFile();
 }
 protected function _getConfigFile()
 {
     $oDebugConfig = new Debugax_Config();
     return $oDebugConfig->getConfigFile();
 }
Example #4
0
 protected function _setConfig()
 {
     $oDebugaxConfig = new Debugax_Config();
     $this->aConfig = $oDebugaxConfig->getConfigFile();
 }