You are here

public function InstallTranslationFilePatternTest::providerValidTranslationFiles in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php \Drupal\Tests\system\Kernel\Installer\InstallTranslationFilePatternTest::providerValidTranslationFiles()
  2. 10 core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php \Drupal\Tests\system\Kernel\Installer\InstallTranslationFilePatternTest::providerValidTranslationFiles()

Return value

array

File

core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php, line 52

Class

InstallTranslationFilePatternTest
Tests for installer language support.

Namespace

Drupal\Tests\system\Kernel\Installer

Code

public function providerValidTranslationFiles() {
  return [
    [
      'hu',
      'drupal-8.0.0-alpha1.hu.po',
    ],
    [
      'ta',
      'drupal-8.10.10-beta12.ta.po',
    ],
    [
      'hi',
      'drupal-8.0.0.hi.po',
    ],
  ];
}