< Summary

Class:RPC.Context.CRDTServiceContext
Assembly:RPC.Context
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/WorldRuntime/KernelCommunication/RPC/Context/CRDTServiceContext.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:12
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
CRDTServiceContext()0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/WorldRuntime/KernelCommunication/RPC/Context/CRDTServiceContext.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using DCL;
 3using DCL.CRDT;
 4
 5namespace RPC.Context
 6{
 7    public class CRDTServiceContext
 8    {
 99        public readonly Dictionary<string, CRDTProtocol> scenesOutgoingCrdts = new Dictionary<string, CRDTProtocol>(24);
 10        public IMessageQueueHandler messageQueueHandler;
 11    }
 12}

Methods/Properties

CRDTServiceContext()