function EntityReferenceIntegrationTest::assertFieldValues
Same name in other branches
- 9 core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceIntegrationTest::assertFieldValues()
- 10 core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceIntegrationTest::assertFieldValues()
- 11.x core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceIntegrationTest::assertFieldValues()
Asserts that the reference field values are correct.
Parameters
string $entity_name: The name of the test entity.
\Drupal\Core\Entity\EntityInterface[] $referenced_entities: An array of referenced entities.
1 call to EntityReferenceIntegrationTest::assertFieldValues()
- EntityReferenceIntegrationTest::testSupportedEntityTypesAndWidgets in core/
modules/ field/ tests/ src/ Functional/ EntityReference/ EntityReferenceIntegrationTest.php - Tests the entity reference field with all its supported field widgets.
File
-
core/
modules/ field/ tests/ src/ Functional/ EntityReference/ EntityReferenceIntegrationTest.php, line 196
Class
- EntityReferenceIntegrationTest
- Tests various Entity reference UI components.
Namespace
Drupal\Tests\field\Functional\EntityReferenceCode
protected function assertFieldValues($entity_name, $referenced_entities) {
$entity = current($this->container
->get('entity_type.manager')
->getStorage($this->entityType)
->loadByProperties([
'name' => $entity_name,
]));
$this->assertNotEmpty($entity, new FormattableMarkup('%entity_type: Entity found in the database.', [
'%entity_type' => $this->entityType,
]));
$this->assertEqual($entity->{$this->fieldName}->target_id, $referenced_entities[0]->id());
$this->assertEqual($entity->{$this->fieldName}->entity
->id(), $referenced_entities[0]->id());
$this->assertEqual($entity->{$this->fieldName}->entity
->label(), $referenced_entities[0]->label());
$this->assertEqual($entity->{$this->fieldName}[1]->target_id, $referenced_entities[1]->id());
$this->assertEqual($entity->{$this->fieldName}[1]->entity
->id(), $referenced_entities[1]->id());
$this->assertEqual($entity->{$this->fieldName}[1]->entity
->label(), $referenced_entities[1]->label());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.