Deletes a comment.
Drupal\comment\Comment $comment: Comment to delete.
function deleteComment(Comment $comment) {
$this
->drupalPost('comment/' . $comment->id . '/delete', array(), t('Delete'));
$this
->assertText(t('The comment and all its replies have been deleted.'), 'Comment deleted.');
}