You are here

protected function SolrBackendTrait::tearDown in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 tests/src/Kernel/Processor/SolrBackendTrait.php \Drupal\Tests\search_api_solr\Kernel\Processor\SolrBackendTrait::tearDown()
  2. 8 tests/src/Kernel/Processor/SolrBackendTrait.php \Drupal\Tests\search_api_solr\Kernel\Processor\SolrBackendTrait::tearDown()
  3. 8.2 tests/src/Kernel/Processor/SolrBackendTrait.php \Drupal\Tests\search_api_solr\Kernel\Processor\SolrBackendTrait::tearDown()

File

tests/src/Kernel/Processor/SolrBackendTrait.php, line 56

Class

SolrBackendTrait
Helper to exchange the DB backend for a Solr backend in processor tests.

Namespace

Drupal\Tests\search_api_solr\Kernel\Processor

Code

protected function tearDown() {
  $this->index
    ->clear();
  $this
    ->ensureCommit($this->index);
  parent::tearDown();
}