Mercurial > hg > cmmr2012-drupal-site
annotate core/tests/Drupal/TestSite/TestSiteInstallTestScript.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
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 } |