createXMLDataSet(dirname(__FILE__) . '/../fixtures/empty.xml'); } protected function setUp() { global $phpbb_root_path, $phpEx, $config, $user, $cache; parent::setUp(); // dbal uses cache $cache = new phpbb_mock_cache(); // set config values $config['fulltext_postgres_min_word_len'] = 4; $config['fulltext_postgres_max_word_len'] = 254; $this->db = $this->new_dbal(); $error = null; $class = self::get_search_wrapper('phpbb_search_fulltext_postgres'); $this->search = new $class($error, $phpbb_root_path, $phpEx, null, $config, $this->db, $user); } }