< Summary - Estud

Information
Class: Estud.Back.Features.Notifications.GetNotifications.GetNotificationsIn
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Notifications/GetNotifications/GetNotificationsIn.cs
Tag: 114_29044117136
Line coverage
50%
Covered lines: 3
Uncovered lines: 3
Coverable lines: 6
Total lines: 13
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
get_Page()100%11100%
get_PageSize()100%11100%
get_UnreadOnly()100%11100%
GetExamples()100%210%

File(s)

/home/runner/work/syki/syki/Back/Features/Notifications/GetNotifications/GetNotificationsIn.cs

#LineLine coverage
 1namespace Estud.Back.Features.Notifications.GetNotifications;
 2
 3public class GetNotificationsIn : IApiDto<GetNotificationsIn>
 4{
 305    public int Page { get; set; } = 1;
 366    public int PageSize { get; set; } = 20;
 187    public bool UnreadOnly { get; set; }
 8
 9    public static IEnumerable<(string, GetNotificationsIn)> GetExamples() =>
 010    [
 011        ("Exemplo", new GetNotificationsIn() { }),
 012    ];
 13}