You are here

CommentRowTest.php in Drupal 10

File

core/modules/comment/tests/src/Functional/Views/CommentRowTest.php
View source
<?php

namespace Drupal\Tests\comment\Functional\Views;


/**
 * Tests the comment row plugin.
 *
 * @group comment
 */
class CommentRowTest extends CommentTestBase {

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_comment_row',
  ];

  /**
   * Tests comment row.
   */
  public function testCommentRow() {
    $this
      ->drupalGet('test-comment-row');
    $result = $this
      ->xpath('//article[contains(@class, "comment")]');
    $this
      ->assertCount(1, $result, 'One rendered comment found.');
  }

}

Classes

Namesort descending Description
CommentRowTest Tests the comment row plugin.