You are here

protected function EntityConstraintViolationListTest::setupConstraintListWithoutCompositeConstraint in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityConstraintViolationListTest.php \Drupal\Tests\Core\Entity\EntityConstraintViolationListTest::setupConstraintListWithoutCompositeConstraint()
  2. 10 core/tests/Drupal/Tests/Core/Entity/EntityConstraintViolationListTest.php \Drupal\Tests\Core\Entity\EntityConstraintViolationListTest::setupConstraintListWithoutCompositeConstraint()

Builds an entity constraint violation list without composite constraints.

Parameters

\Drupal\Core\Entity\FieldableEntityInterface $entity: A fieldable entity.

Return value

\Drupal\Core\Entity\EntityConstraintViolationList The entity constraint violation list.

2 calls to EntityConstraintViolationListTest::setupConstraintListWithoutCompositeConstraint()
EntityConstraintViolationListTest::testFilterByFieldAccess in core/tests/Drupal/Tests/Core/Entity/EntityConstraintViolationListTest.php
@covers ::filterByFieldAccess
EntityConstraintViolationListTest::testFilterByFields in core/tests/Drupal/Tests/Core/Entity/EntityConstraintViolationListTest.php
@covers ::filterByFields

File

core/tests/Drupal/Tests/Core/Entity/EntityConstraintViolationListTest.php, line 120

Class

EntityConstraintViolationListTest
@coversDefaultClass \Drupal\Core\Entity\EntityConstraintViolationList @group entity

Namespace

Drupal\Tests\Core\Entity

Code

protected function setupConstraintListWithoutCompositeConstraint(FieldableEntityInterface $entity) {
  $violations = [];

  // Add two violations to two specific fields.
  $violations[] = new ConstraintViolation('test name violation', '', [], '', 'name', 'invalid');
  $violations[] = new ConstraintViolation('test name violation2', '', [], '', 'name', 'invalid');
  $violations[] = new ConstraintViolation('test type violation', '', [], '', 'type', 'invalid');
  $violations[] = new ConstraintViolation('test type violation2', '', [], '', 'type', 'invalid');

  // Add two entity level specific violations.
  $violations[] = new ConstraintViolation('test entity violation', '', [], '', '', 'invalid');
  $violations[] = new ConstraintViolation('test entity violation2', '', [], '', '', 'invalid');
  return new EntityConstraintViolationList($entity, $violations);
}