function EntityLinkTest::testRenderNullEntity

Same name in other branches
  1. 11.x core/modules/comment/tests/src/Unit/Plugin/views/field/EntityLinkTest.php \Drupal\Tests\comment\Unit\Plugin\views\field\EntityLinkTest::testRenderNullEntity()

Test the render method when getEntity returns NULL.

@covers ::render

File

core/modules/comment/tests/src/Unit/Plugin/views/field/EntityLinkTest.php, line 35

Class

EntityLinkTest
@coversDefaultClass \Drupal\comment\Plugin\views\field\EntityLink @group comment

Namespace

Drupal\Tests\comment\Unit\Plugin\views\field

Code

public function testRenderNullEntity() : void {
    $row = new ResultRow();
    $field = new EntityLink([
        'entity_type' => 'foo',
        'entity field' => 'bar',
    ], '', []);
    $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.