Example #1
0
 /**
  * @covers Main\Config\ConfigReader::readConfig
  * @todo   Implement testReadConfig().
  */
 public function testReadConfig()
 {
     $configLocal = $this->object->readConfig();
     $this->assertInternalType('array', $configLocal);
     $configProd = (require BASE_DIR . '/config/appConfig.php');
     $this->assertArrayHasKey('app', $configProd);
 }