Files
farmOS-dev/web/core/tests/Drupal/TestSite/TestSiteInstallTestScript.php
2024-12-10 15:08:16 +01:00

22 lines
375 B
PHP

<?php
declare(strict_types=1);
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(['test_page_test']);
}
}