You are here

IntegrationTest.php in Search API Multilingual Solr Search 8

File

tests/src/Functional/IntegrationTest.php
View source
<?php

namespace Drupal\Tests\search_api_solr_multilingual\Functional;


/**
 * Tests the overall functionality of the Search API framework and admin UI.
 *
 * @group search_api_solr_multilingual
 */
class IntegrationTest extends \Drupal\Tests\search_api_solr\Functional\IntegrationTest {

  /**
   * {@inheritdoc}
   */
  protected $serverBackend = 'search_api_solr_multilingual';

  /**
   * {@inheritdoc}
   */
  public static $modules = array(
    'search_api_solr_multilingual',
  );

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
  }

  /**
   * {@inheritdoc}
   */
  public function testFramework() {
    parent::testFramework();
  }

}

Classes

Namesort descending Description
IntegrationTest Tests the overall functionality of the Search API framework and admin UI.