< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Langfuse.LangfuseProjectRef
Assembly: NexusLabs.Needlr.AgentFramework.Langfuse
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseProjectRef.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 Crap Score Cyclomatic complexity Line coverage
get_Id()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseProjectRef.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.AgentFramework.Langfuse;
 2
 3/// <summary>
 4/// A single project entry returned by <c>GET /api/public/projects</c>. Only the id is consumed.
 5/// </summary>
 6internal sealed record LangfuseProjectRef
 7{
 8    /// <summary>Gets the project id.</summary>
 129    public string Id { get; init; } = string.Empty;
 10}

Methods/Properties

get_Id()