protected function ConfigurableLanguageTest::getExpectedCacheContexts in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/ConfigurableLanguageTest.php \Drupal\Tests\jsonapi\Functional\ConfigurableLanguageTest::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
- tests/
src/ Functional/ ConfigurableLanguageTest.php, line 109
Class
- ConfigurableLanguageTest
- JSON API integration test for the "ConfigurableLanguage" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
return Cache::mergeContexts(parent::getExpectedCacheContexts(), [
'languages:language_interface',
]);
}