function LazyContextRepositoryTest::testGetRuntimeMultipleContextsPerService

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/Context/LazyContextRepositoryTest.php \Drupal\Tests\Core\Plugin\Context\LazyContextRepositoryTest::testGetRuntimeMultipleContextsPerService()
  2. 8.9.x core/tests/Drupal/Tests/Core/Plugin/Context/LazyContextRepositoryTest.php \Drupal\Tests\Core\Plugin\Context\LazyContextRepositoryTest::testGetRuntimeMultipleContextsPerService()
  3. 10 core/tests/Drupal/Tests/Core/Plugin/Context/LazyContextRepositoryTest.php \Drupal\Tests\Core\Plugin\Context\LazyContextRepositoryTest::testGetRuntimeMultipleContextsPerService()

@covers ::getRuntimeContexts

File

core/tests/Drupal/Tests/Core/Plugin/Context/LazyContextRepositoryTest.php, line 49

Class

LazyContextRepositoryTest
@coversDefaultClass \Drupal\Core\Plugin\Context\LazyContextRepository @group context

Namespace

Drupal\Tests\Core\Plugin\Context

Code

public function testGetRuntimeMultipleContextsPerService() : void {
    $contexts = $this->setupContextAndProvider('test_provider', [
        'test_context0',
        'test_context1',
    ]);
    $lazy_context_repository = new LazyContextRepository($this->container, [
        'test_provider',
    ]);
    $run_time_contexts = $lazy_context_repository->getRuntimeContexts([
        '@test_provider:test_context0',
        '@test_provider:test_context1',
    ]);
    $this->assertEquals([
        '@test_provider:test_context0' => $contexts[0],
        '@test_provider:test_context1' => $contexts[1],
    ], $run_time_contexts);
}

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