protected function assertEntity(int
$id, string
$expected_language, string
$expected_label, string
$expected_vid, ?string
$expected_description = '', ?string
$expected_format = NULL, int
$expected_weight = 0, array
$expected_parents =
[], int
$expected_field_integer_value = NULL, int
$expected_term_reference_tid = NULL
): void
{ /** @var \Drupal\taxonomy\TermInterface $entity */
$entity = Term::
load($id);
$this->
assertInstanceOf(TermInterface::
class,
$entity);
$this->
assertSame($expected_language,
$entity->
language()->
getId());
$this->
assertSame($expected_label,
$entity->
label());
$this->
assertSame($expected_vid,
$entity->
bundle());
$this->
assertSame($expected_description,
$entity->
getDescription());
$this->
assertSame($expected_format,
$entity->
getFormat());
$this->
assertSame($expected_weight,
$entity->
getWeight());
$this->
assertHierarchy($expected_vid,
$id,
$expected_parents);
} /**
* Asserts that a term is present in the tree storage, with the right parents.
*
* @param string $vid
* Vocabulary ID.
* @param int $tid
* ID of the term to check.
* @param array $parent_ids
* The expected parent term IDs.
*
* @internal
*/