< Summary

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

File(s)

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

#LineLine coverage
 1namespace EF.Blockchain.Server.Dtos;
 2
 3public class TransactionOutputDto
 4{
 4245    public string? ToAddress { get; set; } = string.Empty;
 4246    public int? Amount { get; set; } = 0;
 4247    public string? Tx { get; set; } = string.Empty;
 8}