function EntityUUIDTest::testCRUD

Tests UUID generation in entity CRUD operations.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUUIDTest.php, line 42
Definition of Drupal\system\Tests\Entity\EntityUUIDTest.

Class

EntityUUIDTest
Tests creation, saving, and loading of entity UUIDs.

Namespace

Drupal\system\Tests\Entity

Code

function testCRUD() {

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