< Summary - Combined Code Coverage

Information
Class: NLightning.Domain.Client.Requests.OpenChannelClientSubscriptionRequest
Assembly: NLightning.Domain
File(s): /home/runner/work/NLightning/NLightning/src/NLightning.Domain/Client/Requests/OpenChannelClientSubscriptionRequest.cs
Tag: 57_24045730253
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 13
Line coverage: 0%
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_ChannelId()100%210%
.ctor(...)100%210%

File(s)

/home/runner/work/NLightning/NLightning/src/NLightning.Domain/Client/Requests/OpenChannelClientSubscriptionRequest.cs

#LineLine coverage
 1namespace NLightning.Domain.Client.Requests;
 2
 3using Channels.ValueObjects;
 4
 5public class OpenChannelClientSubscriptionRequest
 6{
 07    public ChannelId ChannelId { get; }
 8
 09    public OpenChannelClientSubscriptionRequest(ChannelId channelId)
 10    {
 011        ChannelId = channelId;
 012    }
 13}