• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mehdihadeli / food-delivery-microservices / 28703278310

04 Jul 2026 10:25AM UTC coverage: 17.028% (+0.8%) from 16.207%
28703278310

push

github

web-flow
feat: :sparkles: add inbox, outbox and internal processor by wolverine (#254)

379 of 3330 branches covered (11.38%)

Branch coverage included in aggregate %.

19 of 61 new or added lines in 12 files covered. (31.15%)

29 existing lines in 5 files now uncovered.

1398 of 7106 relevant lines covered (19.67%)

0.41 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/BuildingBlocks/BuildingBlocks.Core/Messages/NullMessagePersistenceService.cs
1
using BuildingBlocks.Abstractions.Commands;
2
using BuildingBlocks.Abstractions.Events;
3
using BuildingBlocks.Abstractions.Messages;
4
using BuildingBlocks.Abstractions.Messages.MessagePersistence;
5

6
namespace BuildingBlocks.Core.Messages;
7

8
public class NullMessagePersistenceService : IMessagePersistenceService
9
{
10
    public Task AddPublishMessageAsync(
11
        IMessageEnvelopeBase messageEnvelope,
12
        CancellationToken cancellationToken = default
13
    )
14
    {
NEW
15
        return Task.CompletedTask;
×
16
    }
17

18
    public Task AddReceivedMessageAsync<TMessage>(
19
        IMessageEnvelopeBase messageEnvelope,
20
        Func<IMessageEnvelopeBase, Task> dispatchAction,
21
        CancellationToken cancellationToken = default
22
    )
23
    {
NEW
24
        return dispatchAction(messageEnvelope);
×
25
    }
26

27
    public Task AddInternalMessageAsync<TInternalCommand>(
28
        TInternalCommand internalCommand,
29
        CancellationToken cancellationToken = default
30
    )
31
        where TInternalCommand : IInternalCommand
32
    {
NEW
33
        return Task.CompletedTask;
×
34
    }
35

36
    public Task AddNotificationAsync<TDomainNotification>(
37
        TDomainNotification notification,
38
        CancellationToken cancellationToken = default
39
    )
40
        where TDomainNotification : IDomainNotificationEvent<IDomainEvent>
41
    {
NEW
42
        return Task.CompletedTask;
×
43
    }
44
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc