< Summary

Information
Class: EF.Blockchain.Server.Extensions.EndpointExtensions
Assembly: EF.Blockchain.Server
File(s): C:\dev\@web3\web3-001-ef-blockchain\backend\EF.Blockchain\src\EF.Blockchain.Server\Extensions\EndpointExtensions.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 14
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
MapAppEndpoints(...)100%11100%

File(s)

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

#LineLine coverage
 1using EF.Blockchain.Server.Endpoints;
 2
 3namespace EF.Blockchain.Server.Extensions;
 4
 5public static class EndpointExtensions
 6{
 7    public static void MapAppEndpoints(this WebApplication app)
 1128    {
 1129        app.MapStatusEndpoints();
 11210        app.MapBlockEndpoints();
 11211        app.MapTransactionEndpoints();
 11212        app.MapWalletEndpoints();
 11213    }
 14}