< Summary - Combined Code Coverage

Information
Class: NLightning.Domain.Bitcoin.Events.WalletMovementEventArgs
Assembly: NLightning.Domain
File(s): /home/runner/work/NLightning/NLightning/src/NLightning.Domain/Bitcoin/Events/WalletMovementEventArgs.cs
Tag: 57_24045730253
Line coverage
0%
Covered lines: 0
Uncovered lines: 10
Coverable lines: 10
Total lines: 20
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_WalletAddress()100%210%
get_Amount()100%210%
get_TxId()100%210%
get_BlockHeight()100%210%
.ctor(...)100%210%

File(s)

/home/runner/work/NLightning/NLightning/src/NLightning.Domain/Bitcoin/Events/WalletMovementEventArgs.cs

#LineLine coverage
 1namespace NLightning.Domain.Bitcoin.Events;
 2
 3using Money;
 4using ValueObjects;
 5
 6public class WalletMovementEventArgs : EventArgs
 7{
 08    public string WalletAddress { get; }
 09    public LightningMoney Amount { get; }
 010    public TxId TxId { get; }
 011    public uint BlockHeight { get; }
 12
 013    public WalletMovementEventArgs(string walletAddress, LightningMoney amount, TxId txId, uint blockHeight)
 14    {
 015        WalletAddress = walletAddress;
 016        Amount = amount;
 017        TxId = txId;
 018        BlockHeight = blockHeight;
 019    }
 20}