assertTrue($expected === PMA_checkPageValidity($page, $whiteList)); } /** * Data provider for testGotoNowhere * * @return array */ public function provider() { return array( array(null, null, false), array('export.php', $this->goto_whitelist, true), array('shell.php', $this->goto_whitelist, false), array('index.php?sql.php&test=true', $this->goto_whitelist, true), array('index.php%3Fsql.php%26test%3Dtrue', $this->goto_whitelist, true), ); } }