blob: 9767e1863f793fde755b444f62cb485aa25cd809 (
plain) (
blame)
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/SearchMySQL3.php' );
class SearchMySQL3Test extends SearchEngine_TestCase {
var $db;
function SearchMySQL3Test( $name ) {
$this->PHPUnit_TestCase( $name );
}
function setUp() {
$GLOBALS['wgContLang'] = new LanguageUtf8;
$this->db =& buildTestDatabase(
'mysql3',
array( 'page', 'revision', 'text', 'searchindex' ) );
if( $this->db ) {
$this->insertSearchData();
}
$this->search =& new SearchMySQL3( $this->db );
}
function tearDown() {
if( !is_null( $this->db ) ) {
$this->db->close();
}
unset( $this->db );
unset( $this->search );
}
}
?>
|