< Summary

Class:Itinero.Instructions.Types.TurnInstruction
Assembly:Itinero.Instructions
File(s):/home/runner/work/routing2/routing2/src/Itinero.Instructions/Types/TurnInstruction.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:13
Line coverage:100% (4 of 4)
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/TurnInstruction.cs

#LineLine coverage
 1namespace Itinero.Instructions.Types;
 2
 3public class TurnInstruction : BaseInstruction
 4{
 5    /// <summary>
 6    ///     A generic turn instruction.
 7    ///
 8    /// </summary>
 39    public TurnInstruction(IndexedRoute route, int shapeIndex, int shapeIndexEnd, int turnDegrees) : base(
 310        route, shapeIndex, shapeIndexEnd, turnDegrees)
 311    {
 312    }
 13}

Methods/Properties

.ctor(...)