function ComponentValidatorTest::dataProviderValidatePropsValid
Same name in this branch
- 11.x core/tests/Drupal/Tests/Core/Theme/Component/ComponentValidatorTest.php \Drupal\Tests\Core\Theme\Component\ComponentValidatorTest::dataProviderValidatePropsValid()
Same name in other branches
- 10 core/modules/sdc/tests/src/Unit/ComponentValidatorTest.php \Drupal\Tests\sdc\Unit\ComponentValidatorTest::dataProviderValidatePropsValid()
- 10 core/tests/Drupal/Tests/Core/Theme/Component/ComponentValidatorTest.php \Drupal\Tests\Core\Theme\Component\ComponentValidatorTest::dataProviderValidatePropsValid()
Data provider with valid component props.
Return value
array The data.
File
-
core/
modules/ sdc/ tests/ src/ Unit/ ComponentValidatorTest.php, line 117
Class
- ComponentValidatorTest
- Unit tests for the component validation.
Namespace
Drupal\Tests\sdc\UnitCode
public static function dataProviderValidatePropsValid() : array {
return [
[
[
'text' => 'Can Pica',
'href' => 'https://www.drupal.org',
'target' => '_blank',
'attributes' => new Attribute([
'key' => 'value',
]),
],
'my-cta',
static::loadComponentDefinitionFromFs('my-cta'),
],
[
[],
'my-banner',
static::loadComponentDefinitionFromFs('my-banner'),
],
[
[
'nonProp' => new \stdClass(),
],
'my-banner',
static::loadComponentDefinitionFromFs('my-banner'),
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.