function ContentEntityStorageBaseTest::providerTestCreate

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

Provides test data for testCreate().

File

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

Class

ContentEntityStorageBaseTest
@coversDefaultClass \Drupal\Core\Entity\ContentEntityStorageBase[[api-linebreak]]

Namespace

Drupal\KernelTests\Core\Entity

Code

public static function providerTestCreate() : \Generator {
  (yield 'scalar' => [
    'bundle' => 'test_bundle',
  ]);
  (yield 'array keyed by delta' => [
    'bundle' => [
      0 => [
        'value' => 'test_bundle',
      ],
    ],
  ]);
  (yield 'array keyed by main property name' => [
    'bundle' => [
      'value' => 'test_bundle',
    ],
  ]);
}

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