< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1using UnityEngine;
 2
 3namespace DCL
 4{
 5    public class DataStore_ExploreV2
 6    {
 1407        public readonly BaseVariable<bool> isInitialized = new BaseVariable<bool>(false);
 1408        public readonly BaseVariable<bool> isOpen = new BaseVariable<bool>(false);
 1409        public readonly BaseVariable<bool> isInShowAnimationTransiton = new BaseVariable<bool>(false);
 14010        public readonly BaseVariable<int> currentSectionIndex = new BaseVariable<int>(0);
 14011        public readonly BaseVariable<bool> placesAndEventsVisible = new BaseVariable<bool>(false);
 14012        public readonly BaseVariable<bool> profileCardIsOpen = new BaseVariable<bool>(false);
 14013        public readonly BaseVariable<Transform> configureBackpackInFullscreenMenu = new BaseVariable<Transform>(null);
 14014        public readonly BaseVariable<Transform> configureMapInFullscreenMenu = new BaseVariable<Transform>(null);
 14015        public readonly BaseVariable<Transform> configureBuilderInFullscreenMenu = new BaseVariable<Transform>(null);
 14016        public readonly BaseVariable<Transform> configureQuestInFullscreenMenu = new BaseVariable<Transform>(null);
 14017        public readonly BaseVariable<Transform> configureSettingsInFullscreenMenu = new BaseVariable<Transform>(null);
 14018        public readonly BaseVariable<Transform> topMenuTooltipReference = new BaseVariable<Transform>(null);
 14019        public readonly BaseVariable<Transform> placesAndEventsTooltipReference = new BaseVariable<Transform>(null);
 14020        public readonly BaseVariable<Transform> backpackTooltipReference = new BaseVariable<Transform>(null);
 14021        public readonly BaseVariable<Transform> mapTooltipReference = new BaseVariable<Transform>(null);
 14022        public readonly BaseVariable<Transform> builderTooltipReference = new BaseVariable<Transform>(null);
 14023        public readonly BaseVariable<Transform> questTooltipReference = new BaseVariable<Transform>(null);
 14024        public readonly BaseVariable<Transform> settingsTooltipReference = new BaseVariable<Transform>(null);
 14025        public readonly BaseVariable<Transform> profileCardTooltipReference = new BaseVariable<Transform>(null);
 26    }
 27}

Methods/Properties

DataStore_ExploreV2()