You are here

public function ContextTest::testDefaultValue in Zircon Profile 8

Same name in this branch
  1. 8 core/tests/Drupal/Tests/Core/Plugin/Context/ContextTest.php \Drupal\Tests\Core\Plugin\Context\ContextTest::testDefaultValue()
  2. 8 core/tests/Drupal/Tests/Component/Plugin/Context/ContextTest.php \Drupal\Tests\Component\Plugin\Context\ContextTest::testDefaultValue()
Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Plugin/Context/ContextTest.php \Drupal\Tests\Core\Plugin\Context\ContextTest::testDefaultValue()

@covers ::getContextValue

File

core/tests/Drupal/Tests/Core/Plugin/Context/ContextTest.php, line 58
Contains \Drupal\Tests\Core\Plugin\Context\ContextTest.

Class

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

Namespace

Drupal\Tests\Core\Plugin\Context

Code

public function testDefaultValue() {
  $this
    ->setUpDefaultValue('test');
  $context = new Context($this->contextDefinition);
  $context
    ->setTypedDataManager($this->typedDataManager);
  $this
    ->assertEquals('test', $context
    ->getContextValue());
}