< Summary

Class:Itinero.Instructions.Types.FollowAlongInstruction
Assembly:Itinero.Instructions
File(s):/home/runner/work/routing2/routing2/src/Itinero.Instructions/Types/FollowAlongInstruction.cs
Covered lines:3
Uncovered lines:0
Coverable lines:3
Total lines:16
Line coverage:100% (3 of 3)
Covered branches:0
Total branches:0
Tag:224_14471318300

Metrics

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

File(s)

/home/runner/work/routing2/routing2/src/Itinero.Instructions/Types/FollowAlongInstruction.cs

#LineLine coverage
 1namespace Itinero.Instructions.Types;
 2
 3public class FollowAlongInstruction : BaseInstruction
 4{
 5    /// <summary>
 6    /// The 'follow along'-instruction means (more or less) 'continue along this road'.
 7    /// It is issued if no single bend is more then 35° (incl) at a time
 8    /// </summary>
 9    /// <param name="route"></param>
 10    /// <param name="shapeIndex"></param>
 11    /// <param name="shapeIndexEnd"></param>
 12    /// <param name="turnDegrees"></param>
 213    public FollowAlongInstruction(IndexedRoute route, int shapeIndex, int shapeIndexEnd, int turnDegrees) : base(
 214        route, shapeIndex, shapeIndexEnd, turnDegrees)
 415    { }
 16}

Methods/Properties

.ctor(...)