You are here

public function EntityTypeCRUDTest::testEntityCreationDoesNotResultInMismatchedEntityDefinitions in Entity Construction Kit (ECK) 8

Test if creation of an entity does not result in mismatched definitions.

File

tests/src/Functional/EntityTypeCRUDTest.php, line 17

Class

EntityTypeCRUDTest
Tests if eck entity types are correctly created and updated.

Namespace

Drupal\Tests\eck\Functional

Code

public function testEntityCreationDoesNotResultInMismatchedEntityDefinitions() {
  $this
    ->createEntityType([], 'TestType');
  $this
    ->assertNoMismatchedFieldDefinitions();
}