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

mehdihadeli / food-delivery-microservices / 28686129952

03 Jul 2026 10:31PM UTC coverage: 17.028% (+0.8%) from 16.207%
28686129952

Pull #254

github

web-flow
Merge 245e1f02e into ed20d3c08
Pull Request #254: feat: :sparkles: add inbox, outbox and internal processor by wolverine

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.Integration.Wolverine/WolverineEndpointAddressFactory.cs
1
using Wolverine.RabbitMQ;
2

3
namespace BuildingBlocks.Integration.Wolverine;
4

5
internal static class WolverineEndpointAddressFactory
6
{
7
    internal static Uri Get(string exchangeOrTopic, string? queue, string routingKey, bool configureConsumeTopology)
8
    {
NEW
9
        if (!configureConsumeTopology || !string.IsNullOrWhiteSpace(queue))
×
10
        {
NEW
11
            return RabbitMqEndpointUri.Routing(exchangeOrTopic, queue ?? routingKey);
×
12
        }
13

NEW
14
        return RabbitMqEndpointUri.Exchange(exchangeOrTopic);
×
15
    }
16
}
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