You are here

public function TranslatorsContentIntegrationTest::testDependencyInstallation in Translation Views 8

Simply check that all required modules have been installed.

File

tests/src/Functional/TranslatorsContentIntegrationTest.php, line 70

Class

TranslatorsContentIntegrationTest
Class TranslatorsContentIntegrationTest.

Namespace

Drupal\Tests\translation_views\Functional

Code

public function testDependencyInstallation() {
  $this
    ->assertTrue($this->container
    ->get('module_handler')
    ->moduleExists('translators'));
  $this
    ->assertTrue($this->container
    ->get('module_handler')
    ->moduleExists('translators_content'));
  $this
    ->assertTrue($this->container
    ->has('translators.skills'));
}