enableBc(); $GLOBALS['cfg']['OBGzip'] = false; $_SESSION['PMA_Theme'] = new PMA_Theme(); $GLOBALS['pmaThemeImage'] = 'theme/'; $GLOBALS['pmaThemePath'] = $_SESSION['PMA_Theme']->getPath(); $GLOBALS['server'] = 1; $GLOBALS['db'] = ''; $GLOBALS['table'] = ''; } /** * Test for PMA_getTableCount * * @return void */ function testTableCount() { $GLOBALS['cfg']['Server']['host'] = 'localhost'; $GLOBALS['cfg']['Server']['user'] = 'root'; $this->assertEquals(5, PMA_getTableCount('meddb')); } }