< Summary

Class:BooleanVariable
Assembly:ScriptableObjects
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/ScriptableObject/Variables/BooleanVariable.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/BooleanVariable.cs

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

Methods/Properties

Equals(System.Boolean)