protected function BlockTest::getExpectedCacheContexts in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Functional/BlockTest.php \Drupal\Tests\jsonapi\Functional\BlockTest::getExpectedCacheContexts()
The expected cache contexts for the GET/HEAD response of the test entity.
Parameters
array|null $sparse_fieldset: If a sparse fieldset is being requested, limit the expected cache contexts for this entity's fields to just these fields.
Return value
string[] A set of cache contexts.
Overrides ResourceTestBase::getExpectedCacheContexts
See also
::testGetIndividual()
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ BlockTest.php, line 144
Class
- BlockTest
- JSON:API integration test for the "Block" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
// @see ::createEntity()
return array_values(array_diff(parent::getExpectedCacheContexts(), [
'user.permissions',
]));
}