test(audit): add youParticipated and youMentioned repository tests

Add isYouParticipated() to ActivityFeedRow interface and cover four
behaviours in AuditLogQueryRepositoryRolledUpTest: youParticipated
true/false and retroactive youMentioned true/false coverage.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-20 21:19:27 +02:00
committed by marcel
parent 6f3aa056a1
commit 9c52e1921f
3 changed files with 80 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ public interface ActivityFeedRow {
UUID getDocumentId();
Instant getHappenedAt();
boolean isYouMentioned();
boolean isYouParticipated();
int getCount();
Instant getHappenedAtUntil();
}