LocaleNonInteractiveDevInstallTest.php in Drupal 10
File
core/modules/locale/tests/src/Functional/LocaleNonInteractiveDevInstallTest.php
View source
<?php
namespace Drupal\Tests\locale\Functional;
class LocaleNonInteractiveDevInstallTest extends LocaleNonInteractiveInstallTest {
protected $defaultTheme = 'stark';
protected function getVersionStringToTest() {
include_once $this->root . '/core/includes/install.core.inc';
$version = _install_get_version_info(\Drupal::VERSION);
return $version['major'] . '.' . $version['minor'] . '.x';
}
}