Codeception\Module\WPDb::seeCommentInDatabase PHP Method

seeCommentInDatabase() public method

Will look up the "comments" table.
public seeCommentInDatabase ( array $criteria ) : void
$criteria array
return void
    public function seeCommentInDatabase(array $criteria)
    {
        $tableName = $this->grabPrefixedTableNameFor('comments');
        $this->seeInDatabase($tableName, $criteria);
    }
WPDb