< Summary

Information
Class: FLP.Application.Responses.Bugs.GetBugByIdResponse
Assembly: FLP.Application
File(s): /home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Application/Responses/Bugs/GetBugByIdResponse.cs
Line coverage
85%
Covered lines: 6
Uncovered lines: 1
Coverable lines: 7
Total lines: 13
Line coverage: 85.7%
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%210%
get_Id()100%11100%
get_Title()100%11100%
get_Description()100%11100%
get_Status()100%11100%
get_ResolvedAt()100%11100%
get_AssignedToUserId()100%11100%

File(s)

/home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Application/Responses/Bugs/GetBugByIdResponse.cs

#LineLine coverage
 1using FLP.Core.Context.Constants;
 2
 3namespace FLP.Application.Responses.Bugs;
 4
 05public record GetBugByIdResponse
 6{
 197    public Guid Id { get; set; }
 188    public string? Title { get; set; }
 189    public string? Description { get; set; }
 2810    public BugStatus Status { get; set; } // e.g., "Open", "In Progress", "Resolved"
 1711    public DateTime? ResolvedAt { get; set; } // Nullable to allow for unresolved bugs
 1412    public Guid? AssignedToUserId { get; set; } // Nullable to allow for unassigned bugs
 13}