< Summary

Class:DCL.DataStore_Channels
Assembly:DataStore
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DataStore/DataStore_Channels.cs
Covered lines:9
Uncovered lines:0
Coverable lines:9
Total lines:15
Line coverage:100% (9 of 9)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DataStore/DataStore_Channels.cs

#LineLine coverage
 1namespace DCL
 2{
 3    public class DataStore_Channels
 4    {
 75        public readonly BaseVariable<string> currentJoinChannelModal = new BaseVariable<string>(null);
 76        public readonly BaseVariable<ChannelJoinedSource> channelJoinedSource = new BaseVariable<ChannelJoinedSource>(Ch
 77        public readonly BaseVariable<ChannelLeaveSource> channelLeaveSource = new BaseVariable<ChannelLeaveSource>(Chann
 78        public readonly BaseVariable<bool> isCreationModalVisible = new BaseVariable<bool>();
 79        public readonly BaseVariable<string> currentChannelLimitReached = new BaseVariable<string>();
 710        public readonly BaseVariable<string> joinChannelError = new BaseVariable<string>();
 711        public readonly BaseVariable<string> leaveChannelError = new BaseVariable<string>();
 712        public readonly BaseVariable<string> channelToBeOpened = new BaseVariable<string>();
 713        public readonly BaseVariable<bool> isPromoteToastVisible = new BaseVariable<bool>();
 14    }
 15}

Methods/Properties

DataStore_Channels()