< Summary

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

File(s)

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

#LineLine coverage
 1// Copyright (c) NexusLabs. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.Collections.Immutable;
 5
 6namespace NexusLabs.Needlr.AgentFramework.Generators;
 7
 8internal readonly struct TerminationConditionEntry
 9{
 10    public TerminationConditionEntry(string agentTypeName, string conditionTypeFQN, ImmutableArray<string> ctorArgLitera
 11    {
 812        AgentTypeName = agentTypeName;
 813        ConditionTypeFQN = conditionTypeFQN;
 814        CtorArgLiterals = ctorArgLiterals;
 815    }
 16
 817    public string AgentTypeName { get; }
 818    public string ConditionTypeFQN { get; }
 1619    public ImmutableArray<string> CtorArgLiterals { get; }
 20}