< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1using UnityEngine;
 2
 3namespace DCL
 4{
 5    public class DataStore_Player
 6    {
 7        // NOTE: set when character is teleported (DCLCharacterController - Teleport)
 6178        public readonly BaseVariable<Vector3> lastTeleportPosition = new BaseVariable<Vector3>(Vector3.zero);
 6179        public readonly BaseDictionary<string, Player> otherPlayers = new BaseDictionary<string, Player>();
 61710        public readonly BaseVariable<Player> ownPlayer = new BaseVariable<Player>();
 11    }
 12}

Methods/Properties

DataStore_Player()