function ContentEntityStorageBaseTest::testCreate

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/ContentEntityStorageBaseTest.php \Drupal\KernelTests\Core\Entity\ContentEntityStorageBaseTest::testCreate()
  2. 10 core/tests/Drupal/KernelTests/Core/Entity/ContentEntityStorageBaseTest.php \Drupal\KernelTests\Core\Entity\ContentEntityStorageBaseTest::testCreate()
  3. 11.x core/tests/Drupal/KernelTests/Core/Entity/ContentEntityStorageBaseTest.php \Drupal\KernelTests\Core\Entity\ContentEntityStorageBaseTest::testCreate()

@covers ::create

@dataProvider providerTestCreate

File

core/tests/Drupal/KernelTests/Core/Entity/ContentEntityStorageBaseTest.php, line 34

Class

ContentEntityStorageBaseTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Entity%21ContentEntityStorageBase.php/class/ContentEntityStorageBase/8.9.x" title="Base class for content entity storage handlers." class="local">\Drupal\Core\Entity\ContentEntityStorageBase</a>

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testCreate($bundle) {
    $storage = $this->container
        ->get('entity_type.manager')
        ->getStorage('entity_test');
    $entity = $storage->create([
        'type' => $bundle,
    ]);
    $this->assertEquals('test_bundle', $entity->bundle());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.