< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1namespace DCL
 2{
 3    public class DataStore_Cursor
 4    {
 5        public enum CursorType
 6        {
 7            NORMAL,
 8            HOVER
 9        }
 10
 43911        public readonly BaseVariable<bool> cursorVisible = new BaseVariable<bool>(true);
 43912        public readonly BaseVariable<CursorType> cursorType = new BaseVariable<CursorType>(CursorType.NORMAL);
 43913        public readonly BaseVariable<bool> hoverFeedbackEnabled = new BaseVariable<bool>(false);
 43914        public readonly BaseVariable<bool> hoverFeedbackHoverState = new BaseVariable<bool>(false);
 43915        public readonly BaseVariable<string> hoverFeedbackButton = new BaseVariable<string>();
 43916        public readonly BaseVariable<string> hoverFeedbackText = new BaseVariable<string>();
 17    }
 18}

Methods/Properties

DataStore_Cursor()