public function CommentTestBase::getUnapprovedComment in Drupal 8
Same name in this branch
- 8 core/modules/comment/src/Tests/CommentTestBase.php \Drupal\comment\Tests\CommentTestBase::getUnapprovedComment()
- 8 core/modules/comment/tests/src/Functional/CommentTestBase.php \Drupal\Tests\comment\Functional\CommentTestBase::getUnapprovedComment()
Gets the comment ID for an unapproved comment.
Parameters
string $subject: Comment subject to find.
Return value
int Comment id.
File
- core/
modules/ comment/ src/ Tests/ CommentTestBase.php, line 391
Class
- CommentTestBase
- Provides setup and helper methods for comment tests.
Namespace
Drupal\comment\TestsCode
public function getUnapprovedComment($subject) {
$this
->drupalGet('admin/content/comment/approval');
preg_match('/href="(.*?)#comment-([^"]+)"(.*?)>(' . $subject . ')/', $this
->getRawContent(), $match);
return $match[2];
}