function ContextAwarePluginTraitTest::testGetContextDefinition

Tests get context definition.

@legacy-covers ::getContextDefinition

File

core/tests/Drupal/KernelTests/Core/Plugin/Context/ContextAwarePluginTraitTest.php, line 74

Class

ContextAwarePluginTraitTest
Tests Drupal\Core\Plugin\ContextAwarePluginTrait.

Namespace

Drupal\KernelTests\Core\Plugin\Context

Code

public function testGetContextDefinition() : void {
  // The context is not defined, so an exception will be thrown.
  $this->expectException(ContextException::class);
  $this->expectExceptionMessage('The person context is not a valid context.');
  $this->plugin
    ->getContextDefinition('person');
}

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