function EntityFormTest::testFormCRUD

Tests basic form CRUD functionality.

File

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

Class

EntityFormTest
Tests the Entity Form Controller.

Namespace

Drupal\system\Tests\Entity

Code

function testFormCRUD() {

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