public function SectionStorageManagerTest::testLoadNull in Drupal 9
Same name and namespace in other branches
- 8 core/modules/layout_builder/tests/src/Unit/SectionStorageManagerTest.php \Drupal\Tests\layout_builder\Unit\SectionStorageManagerTest::testLoadNull()
@covers ::load
File
- core/
modules/ layout_builder/ tests/ src/ Unit/ SectionStorageManagerTest.php, line 113
Class
- SectionStorageManagerTest
- @coversDefaultClass \Drupal\layout_builder\SectionStorage\SectionStorageManager
Namespace
Drupal\Tests\layout_builder\UnitCode
public function testLoadNull() {
$contexts = [
'the_context' => $this
->prophesize(ContextInterface::class)
->reveal(),
];
$this->contextHandler
->applyContextMapping($this->plugin, $contexts)
->willThrow(new ContextException());
$result = $this->manager
->load('the_plugin_id', $contexts);
$this
->assertNull($result);
}