< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Workspace.ReadFileResult
Assembly: NexusLabs.Needlr.AgentFramework
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework/Workspace/ReadFileResult.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 6
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_ActualPath()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework/Workspace/ReadFileResult.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.AgentFramework.Workspace;
 2
 3/// <summary>Result data for a successful <see cref="IWorkspace.TryReadFile"/> call.</summary>
 4/// <param name="ActualPath">The normalized path the file was read from.</param>
 5/// <param name="Content">The file content.</param>
 376public sealed record ReadFileResult(string ActualPath, string Content);

Methods/Properties

get_ActualPath()