< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Generators.SequenceEntry
Assembly: NexusLabs.Needlr.AgentFramework.Generators
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Generators/Models/SequenceEntry.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 18
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_AgentTypeName()100%11100%
get_PipelineName()100%11100%
get_Order()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Generators/Models/SequenceEntry.cs

#LineLine coverage
 1// Copyright (c) NexusLabs. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace NexusLabs.Needlr.AgentFramework.Generators;
 5
 6internal readonly struct SequenceEntry
 7{
 8    public SequenceEntry(string agentTypeName, string pipelineName, int order)
 9    {
 2410        AgentTypeName = agentTypeName;
 2411        PipelineName = pipelineName;
 2412        Order = order;
 2413    }
 14
 2415    public string AgentTypeName { get; }
 2416    public string PipelineName { get; }
 2417    public int Order { get; }
 18}