< Summary

Information
Class: FLP.Application.Responses.Bugs.GetBugResponse
Assembly: FLP.Application
File(s): /home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Application/Responses/Bugs/GetBugsPaginatedResponse.cs
Line coverage
75%
Covered lines: 3
Uncovered lines: 1
Coverable lines: 4
Total lines: 12
Line coverage: 75%
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_Status()100%11100%

File(s)

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

#LineLine coverage
 1using FLP.Core.Context.Constants;
 2
 3namespace FLP.Application.Responses.Bugs;
 4
 05public record GetBugResponse
 6{
 107    public Guid Id { get; set; }
 108    public string? Title { get; set; }
 109    public BugStatus Status { get; set; }
 10}
 11
 12public record GetBugsPaginatedResponse(IEnumerable<GetBugResponse> Bugs, int Total);