Mercurial > hg > cmmr2012-drupal-site
annotate core/tests/Drupal/TestSite/TestSiteInstallTestScript.php @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | |
children |
rev | line source |
---|---|
Chris@4 | 1 <?php |
Chris@4 | 2 |
Chris@4 | 3 namespace Drupal\TestSite; |
Chris@4 | 4 |
Chris@4 | 5 /** |
Chris@4 | 6 * Setup file used by TestSiteApplicationTest. |
Chris@4 | 7 * |
Chris@4 | 8 * @see \Drupal\Tests\Scripts\TestSiteApplicationTest |
Chris@4 | 9 */ |
Chris@4 | 10 class TestSiteInstallTestScript implements TestSetupInterface { |
Chris@4 | 11 |
Chris@4 | 12 /** |
Chris@4 | 13 * {@inheritdoc} |
Chris@4 | 14 */ |
Chris@4 | 15 public function setup() { |
Chris@4 | 16 \Drupal::service('module_installer')->install(['test_page_test']); |
Chris@4 | 17 } |
Chris@4 | 18 |
Chris@4 | 19 } |