ComponentInvalidReplacementTest.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\KernelTests\ComponentsFile
-
core/
tests/ Drupal/ KernelTests/ Components/ ComponentInvalidReplacementTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\KernelTests\Components;
use Drupal\Core\Render\Component\Exception\IncompatibleComponentSchema;
use Drupal\Tests\Core\Theme\Component\ComponentKernelTestBase;
/**
* Tests invalid render options for components.
*
* @group sdc
*/
class ComponentInvalidReplacementTest extends ComponentKernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'sdc_test_replacements_invalid',
];
/**
* {@inheritdoc}
*/
protected static $themes = [
'sdc_theme_test',
];
/**
* Ensure that component replacement validates the schema compatibility.
*/
public function testInvalidDefinitionTheme() : void {
$this->expectException(IncompatibleComponentSchema::class);
$this->manager
->getDefinitions();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ComponentInvalidReplacementTest | Tests invalid render options for components. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.