You are here

protected function LocaleNonInteractiveInstallTest::getVersionStringToTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/locale/tests/src/Functional/LocaleNonInteractiveInstallTest.php \Drupal\Tests\locale\Functional\LocaleNonInteractiveInstallTest::getVersionStringToTest()
  2. 9 core/modules/locale/tests/src/Functional/LocaleNonInteractiveInstallTest.php \Drupal\Tests\locale\Functional\LocaleNonInteractiveInstallTest::getVersionStringToTest()

Gets the version string to use in the translation file.

Return value

string The version string to test, for example, '8.0.0' or '8.6.x'.

File

core/modules/locale/tests/src/Functional/LocaleNonInteractiveInstallTest.php, line 25

Class

LocaleNonInteractiveInstallTest
Tests installing in a different language with a non-dev version string.

Namespace

Drupal\Tests\locale\Functional

Code

protected function getVersionStringToTest() {
  include_once $this->root . '/core/includes/install.core.inc';
  $version = _install_get_version_info(\Drupal::VERSION);
  return $version['major'] . '.0.0';
}