Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / TestSite / TestSiteInstallTestScript.php
1 <?php
2
3 namespace Drupal\TestSite;
4
5 /**
6  * Setup file used by TestSiteApplicationTest.
7  *
8  * @see \Drupal\Tests\Scripts\TestSiteApplicationTest
9  */
10 class TestSiteInstallTestScript implements TestSetupInterface {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function setup() {
16     \Drupal::service('module_installer')->install(['test_page_test']);
17   }
18
19 }