< Summary

Class:Itinero.Data.GlobalNetworkManager
Assembly:Itinero
File(s):/home/runner/work/routing2/routing2/src/Itinero/Data/GlobalNetworkManager.cs
Covered lines:0
Uncovered lines:7
Coverable lines:7
Total lines:26
Line coverage:0% (0 of 7)
Covered branches:0
Total branches:0
Tag:224_14471318300

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor()100%10%
get_VertexIdSet()100%10%
get_EdgeIdSet()100%10%

File(s)

/home/runner/work/routing2/routing2/src/Itinero/Data/GlobalNetworkManager.cs

#LineLine coverage
 1namespace Itinero.Data;
 2
 3/// <summary>
 4/// A manager to manage mapping or vertex and edge ids and turn restrictions.
 5/// </summary>
 6public class GlobalNetworkManager
 7{
 8    /// <summary>
 9    /// Creates a new global network manager.
 10    /// </summary>
 011    public GlobalNetworkManager()
 012    {
 013        this.VertexIdSet = new GlobalVertexIdSet();
 014        this.EdgeIdSet = new GlobalEdgeIdSet();
 015    }
 16
 17    /// <summary>
 18    /// The global vertex id set.
 19    /// </summary>
 020    public GlobalVertexIdSet VertexIdSet { get; }
 21
 22    /// <summary>
 23    /// The global edge id set.
 24    /// </summary>
 025    public GlobalEdgeIdSet EdgeIdSet { get; }
 26}