22 lines
381 B
PHP
22 lines
381 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Drupal\TestSite;
|
|
|
|
/**
|
|
* Setup file used by TestSiteApplicationTest.
|
|
*
|
|
* @see \Drupal\KernelTests\Scripts\TestSiteApplicationTest
|
|
*/
|
|
class TestSiteInstallTestScript implements TestSetupInterface {
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function setup() {
|
|
\Drupal::service('module_installer')->install(['test_page_test']);
|
|
}
|
|
|
|
}
|