< Summary

Information
Class: EF.Blockchain.Server.Dtos.TransactionSearchDto
Assembly: EF.Blockchain.Server
File(s): C:\dev\@web3\web3-001-ef-blockchain\backend\EF.Blockchain\src\EF.Blockchain.Server\Dtos\TransactionSearchDto.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_Transaction()100%11100%
get_MempoolIndex()100%11100%
get_BlockIndex()100%11100%

File(s)

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

#LineLine coverage
 1namespace EF.Blockchain.Server.Dtos;
 2
 3public class TransactionSearchDto
 4{
 405    public TransactionDto Transaction { get; set; } = null!;
 326    public int MempoolIndex { get; set; }
 247    public int BlockIndex { get; set; }
 8}