You are here

TestSiteInstallTestScript.php in Quicklink 2.0.x

Same filename and directory in other branches
  1. 8 tests/src/Nightwatch/TestSiteInstallTestScript.php

Namespace

Drupal\TestSite

File

tests/src/Nightwatch/TestSiteInstallTestScript.php
View source
<?php

namespace Drupal\TestSite;


/**
 * Setup file used by TestSiteApplicationTest.
 *
 * @see \Drupal\Tests\Scripts\TestSiteApplicationTest
 */
class TestSiteInstallTestScript implements TestSetupInterface {

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

}

Classes

Namesort descending Description
TestSiteInstallTestScript Setup file used by TestSiteApplicationTest.