< Summary - Combined Code Coverage

Information
Class: NLightning.Domain.Channels.Events.ChannelResponseMessageEventArgs
Assembly: NLightning.Domain
File(s): /home/runner/work/nlightning/nlightning/src/NLightning.Domain/Channels/Events/ChannelResponseMessageEventArgs.cs
Tag: 36_15743069263
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 16
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_PeerPubKey()100%210%
get_ResponseMessage()100%210%
.ctor(...)100%210%

File(s)

/home/runner/work/nlightning/nlightning/src/NLightning.Domain/Channels/Events/ChannelResponseMessageEventArgs.cs

#LineLine coverage
 1namespace NLightning.Domain.Channels.Events;
 2
 3using Crypto.ValueObjects;
 4using Protocol.Interfaces;
 5
 6public class ChannelResponseMessageEventArgs : EventArgs
 7{
 08    public CompactPubKey PeerPubKey { get; }
 09    public IChannelMessage ResponseMessage { get; }
 10
 011    public ChannelResponseMessageEventArgs(CompactPubKey peerPubKey, IChannelMessage responseMessage)
 12    {
 013        PeerPubKey = peerPubKey;
 014        ResponseMessage = responseMessage;
 015    }
 16}