< Summary - Combined Code Coverage

Information
Class: NLightning.Infrastructure.Bitcoin.Options.BitcoinOptions
Assembly: NLightning.Infrastructure.Bitcoin
File(s): /home/runner/work/nlightning/nlightning/src/NLightning.Infrastructure.Bitcoin/Options/BitcoinOptions.cs
Tag: 36_15743069263
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 11
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_RpcEndpoint()100%11100%
get_RpcUser()100%11100%
get_RpcPassword()100%11100%
get_ZmqHost()100%11100%
get_ZmqBlockPort()100%11100%
get_ZmqTxPort()100%11100%

File(s)

/home/runner/work/nlightning/nlightning/src/NLightning.Infrastructure.Bitcoin/Options/BitcoinOptions.cs

#LineLine coverage
 1namespace NLightning.Infrastructure.Bitcoin.Options;
 2
 3public class BitcoinOptions
 4{
 285    public required string RpcEndpoint { get; set; }
 286    public required string RpcUser { get; set; }
 287    public required string RpcPassword { get; set; }
 448    public required string ZmqHost { get; set; }
 609    public required int ZmqBlockPort { get; set; }
 4410    public required int ZmqTxPort { get; set; }
 11}