< 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: 57_24045730253
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{
 405    public required string RpcEndpoint { get; set; }
 406    public required string RpcUser { get; set; }
 407    public required string RpcPassword { get; set; }
 728    public required string ZmqHost { get; set; }
 729    public required int ZmqBlockPort { get; set; }
 4010    public required int ZmqTxPort { get; set; }
 11}