EntityContextTypedDataTest.php
Same filename in other branches
Namespace
Drupal\KernelTests\Core\PluginFile
-
core/
tests/ Drupal/ KernelTests/ Core/ Plugin/ EntityContextTypedDataTest.php
View source
<?php
namespace Drupal\KernelTests\Core\Plugin;
use Drupal\Core\Entity\Entity\EntityViewDisplay;
use Drupal\Core\Plugin\Context\EntityContext;
use Drupal\KernelTests\KernelTestBase;
/**
* Tests the interaction between entity context and typed data.
*
* @group Context
*/
class EntityContextTypedDataTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'entity_test',
];
/**
* Tests that entity contexts wrapping a config entity can be validated.
*/
public function testValidateConfigEntityContext() {
$display = EntityViewDisplay::create([
'targetEntityType' => 'entity_test',
'bundle' => 'entity_test',
'mode' => 'default',
'status' => TRUE,
]);
$display->save();
$violations = EntityContext::fromEntity($display)->validate();
$this->assertCount(0, $violations);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
EntityContextTypedDataTest | Tests the interaction between entity context and typed data. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.