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

Aldaviva / Unfucked / 19128584806

06 Nov 2025 07:47AM UTC coverage: 0.396% (-39.5%) from 39.923%
19128584806

push

github

Aldaviva
DateTime: added IsBefore and IsAfter for ZonedDateTime, not just OffsetDateTime. DI: Allow super registration for keyed services; fixed super registration of a hosted service causing an infinite recursion during injection. STUN: updated fallback server list, most of which have gone offline (including Google, confusingly); made HttpClient optional.

2 of 1605 branches covered (0.12%)

0 of 55 new or added lines in 2 files covered. (0.0%)

945 existing lines in 35 files now uncovered.

9 of 2272 relevant lines covered (0.4%)

0.04 hits per line

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

0.0
/HTTP/WebTarget.cs
1
using Unfucked.HTTP.Config;
2

3
namespace Unfucked.HTTP;
4

5
public partial class WebTarget: IWebTarget, Configurable<WebTarget> {
6

7
    private readonly UrlBuilder            urlBuilder;
8
    private readonly IHttpClient           client;
9
    private readonly IUnfuckedHttpHandler? clientHandler;
10
    private readonly IClientConfig?        clientConfig;
11

UNCOV
12
    private WebTarget(IHttpClient client, UrlBuilder urlBuilder, IUnfuckedHttpHandler? clientHandler, IClientConfig? clientConfig) {
×
UNCOV
13
        this.client        = client;
×
UNCOV
14
        this.urlBuilder    = urlBuilder;
×
UNCOV
15
        this.clientHandler = clientHandler;
×
UNCOV
16
        this.clientConfig  = clientConfig;
×
UNCOV
17
    }
×
18

UNCOV
19
    private WebTarget(IHttpClient client, UrlBuilder urlBuilder, IUnfuckedHttpHandler? clientHandler): this(client, urlBuilder, clientHandler, clientHandler?.ClientConfig) { }
×
20

UNCOV
21
    public WebTarget(IHttpClient client, UrlBuilder urlBuilder): this(client, urlBuilder, client.Handler) { }
×
22
    public WebTarget(IHttpClient client, Uri uri): this(client, new UrlBuilder(uri)) { }
×
UNCOV
23
    public WebTarget(IHttpClient client, string uri): this(client, new UrlBuilder(uri)) { }
×
24
    public WebTarget(IHttpClient client, UriBuilder uriBuilder): this(client, new UrlBuilder(uriBuilder)) { }
×
25

26
}
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