< Summary - Combined Code Coverage

Information
Class: NLightning.Infrastructure.Protocol.Models.StoredSecret
Assembly: NLightning.Infrastructure
File(s): /home/runner/work/nlightning/nlightning/src/NLightning.Infrastructure/Protocol/Models/StoredSecret.cs
Tag: 30_15166811759
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 7
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
.ctor(...)100%11100%
get_Index()100%11100%
get_SecretPtr()100%11100%

File(s)

/home/runner/work/nlightning/nlightning/src/NLightning.Infrastructure/Protocol/Models/StoredSecret.cs

#LineLine coverage
 1namespace NLightning.Infrastructure.Protocol.Models;
 2
 4003public class StoredSecret(ulong index, IntPtr secretPtr)
 4{
 51765    public ulong Index { get; } = index;
 53686    public IntPtr SecretPtr { get; } = secretPtr;
 7}