protected function EntityTestMapFieldTest::getSparseFieldSets in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/EntityTestMapFieldTest.php \Drupal\Tests\jsonapi\Functional\EntityTestMapFieldTest::getSparseFieldSets()
Returns an array of sparse fields sets to test.
Return value
array An array of sparse field sets (an array of field names), keyed by a label for the field set.
Overrides ResourceTestBase::getSparseFieldSets
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ EntityTestMapFieldTest.php, line 162
Class
- EntityTestMapFieldTest
- JSON:API integration test for the "EntityTestMapField" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getSparseFieldSets() {
// EntityTestMapField's owner field name is `user_id`, not `uid`, which
// breaks nested sparse fieldset tests.
return array_diff_key(parent::getSparseFieldSets(), array_flip([
'nested_empty_fieldset',
'nested_fieldset_with_owner_fieldset',
]));
}