You are here

public function HorizontalTabsLabelsTest::providerTestHorizontalTabsLabels in Field Group 8.3

Data provider for testHorizontalTabsLabels.

Return value

string[][][] The test cases with the theme machine names.

File

tests/src/FunctionalJavascript/HorizontalTabsLabelsTest.php, line 279

Class

HorizontalTabsLabelsTest
Tests horizontal tabs labels.

Namespace

Drupal\Tests\field_group\FunctionalJavascript

Code

public function providerTestHorizontalTabsLabels() {
  return array_reduce($this->themeList, function (array $carry, string $theme_name) {
    $carry[$theme_name] = [
      'theme_name' => $theme_name,
    ];
    return $carry;
  }, []);
}