public function testWhetherItIsPossibleToRetrieveAllPropertyAndSectionNames() { $config = new ConfigObject(array('a' => 'b', 'c' => array('d' => 'e'))); $this->assertEquals(array('a', 'c'), $config->keys(), 'ConfigObjects do not list property and section names correctly'); }
/** * Return this config's section names * * @return array */ public function keys() { return $this->config->keys(); }