function ComponentValidatorTest::dataProviderValidateDefinitionValid

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Theme/Component/ComponentValidatorTest.php \Drupal\Tests\Core\Theme\Component\ComponentValidatorTest::dataProviderValidateDefinitionValid()
  2. 10 core/tests/Drupal/Tests/Core/Theme/Component/ComponentValidatorTest.php \Drupal\Tests\Core\Theme\Component\ComponentValidatorTest::dataProviderValidateDefinitionValid()

Data provider with valid component definitions.

Return value

array The data.

File

core/tests/Drupal/Tests/Core/Theme/Component/ComponentValidatorTest.php, line 52

Class

ComponentValidatorTest
Unit tests for the component validation.

Namespace

Drupal\Tests\Core\Theme\Component

Code

public static function dataProviderValidateDefinitionValid() : \Generator {
  $data = array_map([
    static::class,
    'loadComponentDefinitionFromFs',
  ], [
    'my-banner',
    'my-button',
    'my-cta',
  ]);
  foreach ($data as $definition) {
    yield [
      $definition,
    ];
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.