function AbstractDrupalSolrOnlineWebTestCase::setUp in Apache Solr Search 8
Same name and namespace in other branches
- 6.3 tests/solr_index_and_search.test \AbstractDrupalSolrOnlineWebTestCase::setUp()
- 7 tests/solr_index_and_search.test \AbstractDrupalSolrOnlineWebTestCase::setUp()
Implementation of setUp().
1 call to AbstractDrupalSolrOnlineWebTestCase::setUp()
- DrupalSolrOnlineWebTestCase::setUp in tests/
solr_index_and_search.test - Implementation of setUp().
1 method overrides AbstractDrupalSolrOnlineWebTestCase::setUp()
- DrupalSolrOnlineWebTestCase::setUp in tests/
solr_index_and_search.test - Implementation of setUp().
File
- tests/
solr_index_and_search.test, line 12
Class
Code
function setUp() {
// Install modules needed for this test. This could have been passed in as
// either a single array argument or a variable number of string arguments.
$modules = func_get_args();
if (isset($modules[0]) && is_array($modules[0])) {
$modules = $modules[0];
}
$modules[] = 'apachesolr';
$modules[] = 'apachesolr_search';
$modules[] = 'search';
parent::setUp($modules);
}