function EntityTypeTest::testSet
Tests set.
@legacy-covers ::set @legacy-covers ::get
Attributes
#[DataProvider('providerTestSet')]
File
-
core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityTypeTest.php, line 57
Class
Namespace
Drupal\Tests\Core\EntityCode
public function testSet($key, $value) : void {
$entity_type = $this->setUpEntityType([]);
$this->assertInstanceOf('Drupal\\Core\\Entity\\EntityTypeInterface', $entity_type->set($key, $value));
$this->assertSame($value, $entity_type->get($key));
$this->assertNoPublicProperties($entity_type);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.