< Summary

Class:LongVariable
Assembly:ScriptableObjects
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/ScriptableObject/Variables/LongVariable.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:8
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/ScriptableObject/Variables/LongVariable.cs

#LineLine coverage
 1using UnityEngine;
 2
 3[CreateAssetMenu(fileName = "LongVariable", menuName = "Variables/LongVariable")]
 4public class LongVariable : BaseVariableAsset<long>
 5{
 246    public override bool Equals(long other) { return other == value; }
 7
 8}

Methods/Properties

Equals(System.Int64)