< Summary

Information
Class: EF.Blockchain.Server.Dtos.TransactionInputDto
Assembly: EF.Blockchain.Server
File(s): C:\dev\@web3\web3-001-ef-blockchain\backend\EF.Blockchain\src\EF.Blockchain.Server\Dtos\TransactionInputDto.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 9
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_FromAddress()100%11100%
get_Amount()100%11100%
get_Signature()100%11100%
get_PreviousTx()100%11100%

File(s)

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

#LineLine coverage
 1namespace EF.Blockchain.Server.Dtos;
 2
 3public class TransactionInputDto
 4{
 2005    public string? FromAddress { get; set; } = string.Empty;
 2006    public int? Amount { get; set; } = null;
 2007    public string? Signature { get; set; } = string.Empty;
 2008    public string? PreviousTx { get; set; } = string.Empty;
 9}