function ContactLinkTest::testRenderNullEntity
Same name in other branches
- 10 core/modules/contact/tests/src/Unit/ContactLinkTest.php \Drupal\Tests\contact\Unit\ContactLinkTest::testRenderNullEntity()
Test the render method when getEntity returns NULL.
@covers ::render
File
-
core/
modules/ contact/ tests/ src/ Unit/ ContactLinkTest.php, line 43
Class
- ContactLinkTest
- @coversDefaultClass \Drupal\contact\Plugin\views\field\ContactLink @group contact
Namespace
Drupal\Tests\contact\UnitCode
public function testRenderNullEntity() : void {
$row = new ResultRow();
$field = new ContactLink([
'entity_type' => 'foo',
'entity field' => 'bar',
], '', [], $this->createMock(AccessManagerInterface::class), $this->createMock(EntityTypeManagerInterface::class), $this->createMock(EntityRepositoryInterface::class), $this->createMock(LanguageManagerInterface::class));
$view = $this->createMock(ViewExecutable::class);
$display = $this->createMock(DisplayPluginBase::class);
$field->init($view, $display);
$this->assertEmpty($field->render($row));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.