You are here

public function IntegrationTest::testModule in Search API Saved Searches 8

Tests overall functionality of the module.

Uses sub-methods to improve readability.

File

tests/src/Functional/IntegrationTest.php, line 102

Class

IntegrationTest
Tests overall functionality of the module.

Namespace

Drupal\Tests\search_api_saved_searches\Functional

Code

public function testModule() {
  $this
    ->drupalLogin($this->adminUser);
  $this
    ->configureDefaultType();
  $this
    ->addNewType();
  $this
    ->checkFunctionalityAnonymous();
  $this
    ->checkFunctionalityRegistered();
  $this
    ->checkAccessChecks();
  $this
    ->deleteType();
}