< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Workflows.GraphEdgeDetail
Assembly: NexusLabs.Needlr.AgentFramework.Workflows
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Workflows/GraphEdgeDetail.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 12
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 Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Source()100%11100%
get_Target()100%11100%
get_Condition()100%11100%
get_IsRequired()100%11100%
get_NodeRoutingModeOverride()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Workflows/GraphEdgeDetail.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.AgentFramework.Workflows;
 2
 3/// <summary>
 4/// Describes a single edge in a graph workflow topology, including its
 5/// condition, required-ness, and any per-node routing mode override.
 6/// </summary>
 1317internal sealed record GraphEdgeDetail(
 5908    Type Source,
 6339    Type Target,
 19410    string? Condition,
 10311    bool IsRequired,
 23312    GraphRoutingMode? NodeRoutingModeOverride);