summaryrefslogtreecommitdiff
path: root/tests/SearchMySQL4Test.php
blob: 6277e6ca34c24144b615014b7760f9c502505085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

require_once( 'SearchEngineTest.php' );
require_once( '../includes/SearchMySQL4.php' );

class SearchMySQL4Test extends SearchEngine_TestCase {
	var $db;

	function SearchMySQL4Test( $name ) {
		$this->PHPUnit_TestCase( $name );
	}

	function setUp() {
		$GLOBALS['wgContLang'] = new Language;
		$this->db =& buildTestDatabase(
			'mysql4',
			array( 'page', 'revision', 'text', 'searchindex' ) );
		if( $this->db ) {
			$this->insertSearchData();
		}
		$this->search = new SearchMySQL4( $this->db );
	}

	function tearDown() {
		if( !is_null( $this->db ) ) {
			$this->db->close();
		}
		unset( $this->db );
		unset( $this->search );
	}

}

?>