You are here

public function ContextTest::providerGetContextValue in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Plugin/Context/ContextTest.php \Drupal\Tests\Component\Plugin\Context\ContextTest::providerGetContextValue()

Data provider for testGetContextValue.

File

core/tests/Drupal/Tests/Component/Plugin/Context/ContextTest.php, line 17

Class

ContextTest
@coversDefaultClass \Drupal\Component\Plugin\Context\Context @group Plugin

Namespace

Drupal\Tests\Component\Plugin\Context

Code

public function providerGetContextValue() {
  return [
    [
      'context_value',
      'context_value',
      FALSE,
      'data_type',
    ],
    [
      NULL,
      NULL,
      FALSE,
      'data_type',
    ],
    [
      'will throw exception',
      NULL,
      TRUE,
      'data_type',
    ],
  ];
}