Followup to r60697: add a comment to js2stopgap.js pointing out that we patched jQuer...
[mediawiki.git] / tests / SearchMySQL4Test.php
blobffb41bfd77e4faaea6d7001a3598e4431992a59c
1 <?php
2 require_once( 'SearchEngineTest.php' );
4 /**
5 * @group Broken
6 */
8 class SearchMySQL4Test extends SearchEngineTest {
9 var $db;
11 function setUp() {
12 $GLOBALS['wgContLang'] = new Language;
13 $this->db = $this->buildTestDatabase(
14 array( 'page', 'revision', 'text', 'searchindex' ) );
15 if( $this->db ) {
16 $this->insertSearchData();
18 $this->search = new SearchMySQL4( $this->db );
21 function tearDown() {
22 if( !is_null( $this->db ) ) {
23 $this->db->close();
25 unset( $this->db );
26 unset( $this->search );