public function SqlContentEntityStorageTest::providerTestGetTableMappingSimple in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest::providerTestGetTableMappingSimple()
- 9 core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest::providerTestGetTableMappingSimple()
Provides test data for testGetTableMappingSimple().
Return value
array[] A nested array, where each inner array has a single value being a map of entity keys to use for the mocked entity type.
File
- core/tests/ Drupal/ Tests/ Core/ Entity/ Sql/ SqlContentEntityStorageTest.php, line 529 
- Contains \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest.
Class
- SqlContentEntityStorageTest
- @coversDefaultClass \Drupal\Core\Entity\Sql\SqlContentEntityStorage @group Entity
Namespace
Drupal\Tests\Core\Entity\SqlCode
public function providerTestGetTableMappingSimple() {
  return [
    [
      [
        'id' => 'test_id',
        'bundle' => NULL,
        'uuid' => NULL,
      ],
    ],
    [
      [
        'id' => 'test_id',
        'bundle' => 'test_bundle',
        'uuid' => NULL,
      ],
    ],
    [
      [
        'id' => 'test_id',
        'bundle' => NULL,
        'uuid' => 'test_uuid',
      ],
    ],
    [
      [
        'id' => 'test_id',
        'bundle' => 'test_bundle',
        'uuid' => 'test_uuid',
      ],
    ],
  ];
}