You are here

class SiteInstallSetupScript in Sharethis block 8

Setup file used by responsive_menu module Nightwatch tests.

Hierarchy

Expanded class hierarchy of SiteInstallSetupScript

File

tests/src/Nightwatch/SiteInstallSetupScript.php, line 10

Namespace

Drupal\sharethis_block
View source
class SiteInstallSetupScript implements TestSetupInterface {

  /**
   * {@inheritdoc}
   */
  public function setup() {
    \Drupal::service('module_installer')
      ->install([
      'sharethis_block_test',
    ]);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SiteInstallSetupScript::setup public function Run the code to setup the test environment. Overrides TestSetupInterface::setup