InstallerTranslationMultipleLanguageKeepEnglishTest.php 500 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\FunctionalTests\Installer;
  3. /**
  4. * Tests that keeping English in a foreign language install works.
  5. *
  6. * @group Installer
  7. */
  8. class InstallerTranslationMultipleLanguageKeepEnglishTest extends InstallerTranslationMultipleLanguageForeignTest {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. protected $defaultTheme = 'stark';
  13. /**
  14. * Switch to the multilingual testing profile with English kept.
  15. *
  16. * @var string
  17. */
  18. protected $profile = 'testing_multilingual_with_english';
  19. }