You are here

class LocaleNonInteractiveDevInstallTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/locale/tests/src/Functional/LocaleNonInteractiveDevInstallTest.php \Drupal\Tests\locale\Functional\LocaleNonInteractiveDevInstallTest
  2. 9 core/modules/locale/tests/src/Functional/LocaleNonInteractiveDevInstallTest.php \Drupal\Tests\locale\Functional\LocaleNonInteractiveDevInstallTest

Tests installing in a different language with a dev version string.

@group locale

Hierarchy

Expanded class hierarchy of LocaleNonInteractiveDevInstallTest

File

core/modules/locale/tests/src/Functional/LocaleNonInteractiveDevInstallTest.php, line 10

Namespace

Drupal\Tests\locale\Functional
View source
class LocaleNonInteractiveDevInstallTest extends LocaleNonInteractiveInstallTest {

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  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';
  }

}

Members