< Summary

Class:Decentraland.Renderer.KernelServices.ClientFriendsKernelService
Assembly:Decentraland.Protocol.GeneratedCode
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DecentralandProtocol/Decentraland/renderer/kernel_services/ClientFriendsKernelService.gen.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:31
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ClientFriendsKernelService(...)0%2100%
GetFriendshipStatus(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DecentralandProtocol/Decentraland/renderer/kernel_services/ClientFriendsKernelService.gen.cs

#LineLine coverage
 1
 2// AUTOGENERATED, DO NOT EDIT
 3// Type definitions for server implementations of ports.
 4// package: decentraland.renderer.kernel_services
 5// file: decentraland/renderer/kernel_services/friends_kernel.proto
 6using Cysharp.Threading.Tasks;
 7using rpc_csharp;
 8
 9namespace Decentraland.Renderer.KernelServices {
 10public interface IClientFriendsKernelService
 11{
 12  UniTask<GetFriendshipStatusResponse> GetFriendshipStatus(GetFriendshipStatusRequest request);
 13}
 14
 15public class ClientFriendsKernelService : IClientFriendsKernelService
 16{
 17  private readonly RpcClientModule module;
 18
 019  public ClientFriendsKernelService(RpcClientModule module)
 20  {
 021      this.module = module;
 022  }
 23
 24
 25  public UniTask<GetFriendshipStatusResponse> GetFriendshipStatus(GetFriendshipStatusRequest request)
 26  {
 027      return module.CallUnaryProcedure<GetFriendshipStatusResponse>("GetFriendshipStatus", request);
 28  }
 29
 30}
 31}