< Summary

Class:ParcelCoordinates
Assembly:HUDUtils
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Utils/ParcelCoordinates.cs
Covered lines:7
Uncovered lines:0
Coverable lines:7
Total lines:17
Line coverage:100% (7 of 7)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Utils/ParcelCoordinates.cs

#LineLine coverage
 1public class ParcelCoordinates
 2{
 4933    public int x { get; private set; }
 4934    public int y { get; private set; }
 5
 4816    public ParcelCoordinates(int x, int y)
 7    {
 4818        this.x = x;
 4819        this.y = y;
 48110    }
 11
 12    public override string ToString()
 13    {
 114        return $"{x},{y}";
 15    }
 16
 17}