< Summary

Class:Itinero.Network.Tiles.Standalone.BoundaryEdgeId
Assembly:Itinero
File(s):/home/runner/work/routing2/routing2/src/Itinero/Network/Tiles/Standalone/BoundaryEdgeId.cs
Covered lines:3
Uncovered lines:1
Coverable lines:4
Total lines:11
Line coverage:75% (3 of 4)
Covered branches:0
Total branches:0
Tag:224_14471318300

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor(...)100%1100%
get_LocalId()100%10%

File(s)

/home/runner/work/routing2/routing2/src/Itinero/Network/Tiles/Standalone/BoundaryEdgeId.cs

#LineLine coverage
 1namespace Itinero.Network.Tiles.Standalone;
 2
 3public struct BoundaryEdgeId
 4{
 5    public BoundaryEdgeId(uint localId)
 26    {
 27        this.LocalId = localId;
 28    }
 9
 010    public uint LocalId { get; }
 11}

Methods/Properties

.ctor(...)
get_LocalId()