You are here

public function IsFrontPathCacheContextTest::testGetContextNotFront in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Cache/Context/IsFrontPathCacheContextTest.php \Drupal\Tests\Core\Cache\Context\IsFrontPathCacheContextTest::testGetContextNotFront()
  2. 10 core/tests/Drupal/Tests/Core/Cache/Context/IsFrontPathCacheContextTest.php \Drupal\Tests\Core\Cache\Context\IsFrontPathCacheContextTest::testGetContextNotFront()

@covers ::getContext

File

core/tests/Drupal/Tests/Core/Cache/Context/IsFrontPathCacheContextTest.php, line 26

Class

IsFrontPathCacheContextTest
@coversDefaultClass \Drupal\Core\Cache\Context\IsFrontPathCacheContext @group Cache

Namespace

Drupal\Tests\Core\Cache\Context

Code

public function testGetContextNotFront() {
  $cache_context = new IsFrontPathCacheContext($this
    ->createPathMatcher(FALSE)
    ->reveal());
  $this
    ->assertSame('is_front.0', $cache_context
    ->getContext());
}