
| Current Path : /var/www/html/rocksensor3/web/core/modules/comment/tests/src/Functional/Views/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/core/modules/comment/tests/src/Functional/Views/CommentRowTest.php |
<?php
declare(strict_types=1);
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(): void {
$this->drupalGet('test-comment-row');
$this->assertSession()->elementsCount('xpath', '//article[contains(@class, "comment")]', 1);
}
}