You are here

public function SearchApiUnitTest::testUnits in Search API 7

Tests the functionality of several components of the module.

This is the single test method called by the Simpletest framework. It in turn calls other helper methods to test specific functionality.

File

./search_api.test, line 863
Contains the SearchApiWebTest and the SearchApiUnitTest classes.

Class

SearchApiUnitTest
Class with unit tests testing small fragments of the Search API.

Code

public function testUnits() {
  $this
    ->checkQueryParseKeys();
  $this
    ->checkIgnoreCaseProcessor();
  $this
    ->checkTokenizer();
  $this
    ->checkHtmlFilter();
  $this
    ->checkEntityDatasource();
}