function SearchMatchTest::_setup in SimpleTest 5
Same name and namespace in other branches
- 6 tests/search_match.test \SearchMatchTest::_setup()
Set up a small index of items to test against.
1 call to SearchMatchTest::_setup()
File
- tests/
search_match.test, line 31
Class
Code
function _setup() {
$this
->drupalVariableSet('minimum_word_size', 3);
for ($i = 1; $i <= 7; ++$i) {
search_index($i, SEARCH_TYPE, $this
->_get_text($i));
}
search_update_totals();
}