You are here

public function EntityFieldTest::testIterator in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php \Drupal\KernelTests\Core\Entity\EntityFieldTest::testIterator()

Tests iterating over properties.

File

core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php, line 508

Class

EntityFieldTest
Tests the Entity Field API.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testIterator() {

  // All entity variations have to have the same results.
  foreach (entity_test_entity_types() as $entity_type) {
    $this
      ->doTestIterator($entity_type);
  }
}