You are here

CommentOperationsTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/comment/src/Tests/Views/CommentOperationsTest.php

File

core/modules/comment/src/Tests/Views/CommentOperationsTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\comment\Tests\Views\CommentOperationsTest.
 */
namespace Drupal\comment\Tests\Views;


/**
 * Tests comment operations.
 *
 * @group comment
 */
class CommentOperationsTest extends CommentTestBase {

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

  /**
   * Test the operations field plugin.
   */
  public function testCommentOperations() {
    $admin_account = $this
      ->drupalCreateUser([
      'administer comments',
    ]);
    $this
      ->drupalLogin($admin_account);
    $this
      ->drupalGet('test-comment-operations');
    $this
      ->assertResponse(200);
    $operation = $this
      ->cssSelect('.views-field-operations li.edit a');
    $this
      ->assertEqual(count($operation), 1, 'Found edit operation for comment.');
    $operation = $this
      ->cssSelect('.views-field-operations li.delete a');
    $this
      ->assertEqual(count($operation), 1, 'Found delete operation for comment.');
  }

}

Classes

Namesort descending Description
CommentOperationsTest Tests comment operations.