< Summary

Information
Class: EF.Blockchain.Server.Dtos.WalletDto
Assembly: EF.Blockchain.Server
File(s): C:\dev\@web3\web3-001-ef-blockchain\backend\EF.Blockchain\src\EF.Blockchain.Server\Dtos\WalletDto.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 11
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
get_Balance()100%11100%
get_Fee()100%11100%
get_Utxo()100%11100%
get_Name()100%11100%
get_PrivateKey()100%11100%
get_PublicKey()100%11100%

File(s)

C:\dev\@web3\web3-001-ef-blockchain\backend\EF.Blockchain\src\EF.Blockchain.Server\Dtos\WalletDto.cs

#LineLine coverage
 1namespace EF.Blockchain.Server.Dtos;
 2
 3public class WalletDto
 4{
 325    public int Balance { get; set; }
 246    public int Fee { get; set; }
 407    public List<TransactionOutputDto> Utxo { get; set; } = new();
 168    public string Name { get; set; } = string.Empty;
 169    public string PrivateKey { get; set; } = string.Empty;
 1610    public string PublicKey { get; set; } = string.Empty;
 11}