You are here

public function CacheContextsManagerTest::testAvailableContextLabels in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Cache/Context/CacheContextsManagerTest.php \Drupal\Tests\Core\Cache\Context\CacheContextsManagerTest::testAvailableContextLabels()

File

core/tests/Drupal/Tests/Core/Cache/Context/CacheContextsManagerTest.php, line 146
Contains \Drupal\Tests\Core\Cache\Context\CacheContextsManagerTest.

Class

CacheContextsManagerTest
@coversDefaultClass \Drupal\Core\Cache\Context\CacheContextsManager @group Cache

Namespace

Drupal\Tests\Core\Cache\Context

Code

public function testAvailableContextLabels() {
  $container = $this
    ->getMockContainer();
  $cache_contexts_manager = new CacheContextsManager($container, $this
    ->getContextsFixture());
  $labels = $cache_contexts_manager
    ->getLabels();
  $expected = [
    "foo" => "Foo",
  ];
  $this
    ->assertEquals($expected, $labels);
}