function ProtocolVersionCacheContextTest::providerTestGetContext

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::providerTestGetContext()
  2. 10 core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::providerTestGetContext()
  3. 9 core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::providerTestGetContext()
  4. 8.9.x core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::providerTestGetContext()

Provides a list of query arguments and expected cache contexts.

File

core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php, line 38

Class

ProtocolVersionCacheContextTest
Tests Drupal\Core\Cache\Context\ProtocolVersionCacheContext.

Namespace

Drupal\Tests\Core\Cache\Context

Code

public static function providerTestGetContext() : array {
  return [
    [
      'HTTP/1.0',
      'HTTP/1.0',
    ],
    [
      'HTTP/1.1',
      'HTTP/1.1',
    ],
    [
      'HTTP/2.0',
      'HTTP/2.0',
    ],
    [
      'HTTP/3.0',
      'HTTP/3.0',
    ],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.