function 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 530 
Class
- SqlContentEntityStorageTest
- @coversDefaultClass \Drupal\Core\Entity\Sql\SqlContentEntityStorage[[api-linebreak]] @group Entity
Namespace
Drupal\Tests\Core\Entity\SqlCode
public static 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',
      ],
    ],
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
