function ContextualUnitTest::testContextualIdToLinks
Same name and namespace in other branches
- 11.x core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php \Drupal\Tests\contextual\Kernel\ContextualUnitTest::testContextualIdToLinks()
- 10 core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php \Drupal\Tests\contextual\Kernel\ContextualUnitTest::testContextualIdToLinks()
- 9 core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php \Drupal\Tests\contextual\Kernel\ContextualUnitTest::testContextualIdToLinks()
- 8.9.x core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php \Drupal\Tests\contextual\Kernel\ContextualUnitTest::testContextualIdToLinks()
Tests the conversion from contextual ID to links.
@legacy-covers ::_contextual_id_to_links
Attributes
#[DataProvider('contextualLinksDataProvider')]
Parameters
array $links: The #contextual_links property value array.
string $id: The serialized representation of the passed links.
string $theme: The name of the theme the placeholder should pass to the controller.
File
-
core/
modules/ contextual/ tests/ src/ Kernel/ ContextualUnitTest.php, line 137
Class
- ContextualUnitTest
- Tests edge cases for converting between contextual links and IDs.
Namespace
Drupal\Tests\contextual\KernelCode
public function testContextualIdToLinks(array $links, string $id, string $theme) : void {
$this->assertSame($links, $this->container
->get(ContextualLinksSerializer::class)
->idToLinks($id));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.