function ComponentValidatorTest::testValidatePropsInvalid
Same name in this branch
- 11.x core/modules/sdc/tests/src/Unit/ComponentValidatorTest.php \Drupal\Tests\sdc\Unit\ComponentValidatorTest::testValidatePropsInvalid()
Same name in other branches
- 10 core/modules/sdc/tests/src/Unit/ComponentValidatorTest.php \Drupal\Tests\sdc\Unit\ComponentValidatorTest::testValidatePropsInvalid()
- 10 core/tests/Drupal/Tests/Core/Theme/Component/ComponentValidatorTest.php \Drupal\Tests\Core\Theme\Component\ComponentValidatorTest::testValidatePropsInvalid()
Tests that invalid props are handled properly.
@dataProvider dataProviderValidatePropsInvalid
Throws
\Drupal\Core\Render\Component\Exception\InvalidComponentException
File
-
core/
tests/ Drupal/ Tests/ Core/ Theme/ Component/ ComponentValidatorTest.php, line 162
Class
- ComponentValidatorTest
- Unit tests for the component validation.
Namespace
Drupal\Tests\Core\Theme\ComponentCode
public function testValidatePropsInvalid(array $context, string $component_id, array $definition) : void {
$component = new Component([
'app_root' => '/fake/path/root',
], 'sdc_test:' . $component_id, $definition);
$this->expectException(InvalidComponentException::class);
$component_validator = new ComponentValidator();
$component_validator->setValidator();
$component_validator->validateProps($context, $component);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.