< Summary

Information
Class: MoreStructures.Graphs.Visitor.VisitEventArgs
Assembly: MoreStructures
File(s): /home/runner/work/MoreStructures/MoreStructures/MoreStructures/Graphs/Visitor/VisitEventArgs.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 10
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Vertex()100%1100%

File(s)

/home/runner/work/MoreStructures/MoreStructures/MoreStructures/Graphs/Visitor/VisitEventArgs.cs

#LineLine coverage
 1namespace MoreStructures.Graphs.Visitor;
 2
 3/// <summary>
 4/// An object carrying information about the visit of a vertex of a graph being visited by a
 5/// <see cref="IVisitStrategy"/>.
 6/// </summary>
 7/// <param name="Vertex">The vertex being visited.</param>
 8/// <param name="ConnectedComponent">The label of the connected component, <paramref name="Vertex"/> is in.</param>
 9/// <param name="PreviousVertex">The vertex whose visit led to the visit of <paramref name="Vertex"/>.</param>
 4311110public record VisitEventArgs(int Vertex, int ConnectedComponent, int? PreviousVertex);

Methods/Properties

get_Vertex()