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

Aldaviva / Unfucked / 23378203323

21 Mar 2026 10:59AM UTC coverage: 35.442% (-11.7%) from 47.183%
23378203323

push

github

Aldaviva
Seal all possible classes for allegedly higher performance, since they weren't actually subclassable anyway due to C# not making methods virtual by default. If this change does more harm than good, blame Stephen Toub.

573 of 1629 branches covered (35.17%)

14 of 72 new or added lines in 15 files covered. (19.44%)

488 existing lines in 30 files now uncovered.

975 of 2751 relevant lines covered (35.44%)

162.06 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
/// <inheritdoc cref="IWebTarget" />
6
public partial class WebTarget: IWebTarget, Configurable<WebTarget> {
7

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

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

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

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

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