< Summary - Combined Code Coverage

Information
Class: NLightning.Infrastructure.Persistence.Entities.Bitcoin.WalletAddressEntity
Assembly: NLightning.Infrastructure.Persistence
File(s): /home/runner/work/NLightning/NLightning/src/NLightning.Infrastructure.Persistence/Entities/Bitcoin/WalletAddressEntity.cs
Tag: 57_24045730253
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_Index()100%210%
get_IsChange()100%210%
get_AddressType()100%210%
get_Address()100%210%
get_Utxos()100%210%
.ctor()100%210%

File(s)

/home/runner/work/NLightning/NLightning/src/NLightning.Infrastructure.Persistence/Entities/Bitcoin/WalletAddressEntity.cs

#LineLine coverage
 1namespace NLightning.Infrastructure.Persistence.Entities.Bitcoin;
 2
 3using Domain.Bitcoin.Enums;
 4
 5public class WalletAddressEntity
 6{
 07    public uint Index { get; set; }
 08    public bool IsChange { get; set; }
 09    public required AddressType AddressType { get; set; }
 010    public required string Address { get; set; }
 11
 012    public virtual IEnumerable<UtxoEntity>? Utxos { get; set; }
 13
 14    // Default constructor for EF Core
 015    internal WalletAddressEntity() { }
 16}