You are here

protected function ContentLanguageSettingsTest::getExpectedCacheContexts in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::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/ContentLanguageSettingsTest.php, line 120

Class

ContentLanguageSettingsTest
JSON API integration test for "ContentLanguageSettings" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
  return Cache::mergeContexts(parent::getExpectedCacheContexts(), [
    'languages:language_interface',
  ]);
}