You are here

public function ContextMapperTest::testGetContextValues in Page Manager 8.4

Same name and namespace in other branches
  1. 8 tests/src/Unit/ContextMapperTest.php \Drupal\Tests\page_manager\Unit\ContextMapperTest::testGetContextValues()

@covers ::getContextValues

File

tests/src/Unit/ContextMapperTest.php, line 58

Class

ContextMapperTest
@coversDefaultClass \Drupal\page_manager\ContextMapper

Namespace

Drupal\Tests\page_manager\Unit

Code

public function testGetContextValues() {
  $input = [];
  $actual = $this->staticContext
    ->getContextValues($input);
  $this
    ->assertEquals([], $actual);
}