< Summary

Information
Class: FLP.Core.Context.Query.PaginatedBugQuery
Assembly: FLP.Core
File(s): /home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Core/Context/Query/PaginatedBugQuery.cs
Line coverage
50%
Covered lines: 1
Uncovered lines: 1
Coverable lines: 2
Total lines: 9
Line coverage: 50%
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_Status()100%11100%

File(s)

/home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Core/Context/Query/PaginatedBugQuery.cs

#LineLine coverage
 1using FLP.Core.Context.Constants;
 2using FLP.Core.Context.Shared;
 3
 4namespace FLP.Core.Context.Query;
 5
 06public record PaginatedBugQuery : PaginatedQuery
 7{
 28    public BugStatus? Status { get; set; }
 9}