< 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:32
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 interface IClientHttpEndpoints
 12{
 13  UniTask<AboutResponse> About(Empty request);
 14}
 15
 16public class ClientHttpEndpoints : IClientHttpEndpoints
 17{
 18  private readonly RpcClientModule module;
 19
 020  public ClientHttpEndpoints(RpcClientModule module)
 21  {
 022      this.module = module;
 023  }
 24
 25
 26  public UniTask<AboutResponse> About(Empty request)
 27  {
 028      return module.CallUnaryProcedure<AboutResponse>("About", request);
 29  }
 30
 31}
 32}