File tree Expand file tree Collapse file tree 1 file changed +0
-55
lines changed
packages/stream_feeds_test/lib/src/helpers Expand file tree Collapse file tree 1 file changed +0
-55
lines changed Original file line number Diff line number Diff line change @@ -664,61 +664,6 @@ QueryCommentsResponse createDefaultQueryCommentsResponse({
664664 );
665665}
666666
667- FeedsReactionResponse createDefaultReactionResponse ({
668- String activityId = 'activity-id' ,
669- String ? commentId,
670- String userId = 'user-id' ,
671- String reactionType = 'like' ,
672- }) {
673- return FeedsReactionResponse (
674- activityId: activityId,
675- commentId: commentId,
676- type: reactionType,
677- createdAt: DateTime .timestamp (),
678- updatedAt: DateTime .timestamp (),
679- user: createDefaultUserResponse (id: userId),
680- );
681- }
682-
683- QueryActivityReactionsResponse createDefaultQueryActivityReactionsResponse ({
684- String ? next,
685- String ? prev,
686- List <FeedsReactionResponse > reactions = const [],
687- }) {
688- return QueryActivityReactionsResponse (
689- next: next,
690- prev: prev,
691- reactions: reactions,
692- duration: '10ms' ,
693- );
694- }
695-
696- QueryCommentReactionsResponse createDefaultQueryCommentReactionsResponse ({
697- String ? next,
698- String ? prev,
699- List <FeedsReactionResponse > reactions = const [],
700- }) {
701- return QueryCommentReactionsResponse (
702- next: next,
703- prev: prev,
704- reactions: reactions,
705- duration: '10ms' ,
706- );
707- }
708-
709- QueryCommentsResponse createDefaultQueryCommentsResponse ({
710- String ? next,
711- String ? prev,
712- List <CommentResponse > comments = const [],
713- }) {
714- return QueryCommentsResponse (
715- next: next,
716- prev: prev,
717- comments: comments,
718- duration: '10ms' ,
719- );
720- }
721-
722667FeedMemberResponse createDefaultFeedMemberResponse ({
723668 String id = 'member-id' ,
724669 String role = 'member' ,
You can’t perform that action at this time.
0 commit comments