< Summary

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

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Generators/Models/AgentFunctionGroupEntry.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 AgentFunctionGroupEntry
 7{
 8    public AgentFunctionGroupEntry(string typeName, string groupName)
 9    {
 1410        TypeName = typeName;
 1411        GroupName = groupName;
 1412    }
 13
 2814    public string TypeName { get; }
 4215    public string GroupName { get; }
 16}