You are here

public function EntityFieldTest::testDataStructureInterfaces 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::testDataStructureInterfaces()

Tests working with the entity based upon the TypedData API.

File

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

Class

EntityFieldTest
Tests the Entity Field API.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testDataStructureInterfaces() {

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