< Summary

Class:Decentraland.Bff.ClientHttpEndpoints
Assembly:Decentraland.Protocol.GeneratedCode
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DecentralandProtocol/Decentraland/bff/ClientHttpEndpointsService.gen.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:25
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ClientHttpEndpoints(...)0%2100%
About(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DecentralandProtocol/Decentraland/bff/ClientHttpEndpointsService.gen.cs

#LineLine coverage
 1
 2// AUTOGENERATED, DO NOT EDIT
 3// Type definitions for server implementations of ports.
 4// package: decentraland.bff
 5// file: decentraland/bff/http_endpoints.proto
 6using Cysharp.Threading.Tasks;
 7using rpc_csharp;
 8using Google.Protobuf.WellKnownTypes;
 9
 10namespace Decentraland.Bff {
 11public class ClientHttpEndpoints
 12{
 13  private readonly RpcClientModule module;
 14
 015  public ClientHttpEndpoints(RpcClientModule module)
 16  {
 017      this.module = module;
 018  }
 19
 20  public UniTask<AboutResponse> About(Empty request)
 21  {
 022      return module.CallUnaryProcedure<AboutResponse>("About", request);
 23  }
 24}
 25}