Codeception\Module\WPDb::seeCommentInDatabase PHP Метод

seeCommentInDatabase() публичный Метод

Will look up the "comments" table.
public seeCommentInDatabase ( array $criteria ) : void
$criteria array
Результат void
    public function seeCommentInDatabase(array $criteria)
    {
        $tableName = $this->grabPrefixedTableNameFor('comments');
        $this->seeInDatabase($tableName, $criteria);
    }
WPDb