< Summary - Estud

Information
Class: Estud.Back.Features.Notifications.GetNotifications.NotificationRow
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Notifications/GetNotifications/GetNotificationsDtos.cs
Tag: 114_29044117136
Line coverage
100%
Covered lines: 8
Uncovered lines: 0
Coverable lines: 8
Total lines: 13
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_Id()100%11100%
get_NotificationType()100%11100%
get_Title()100%11100%
get_Description()100%11100%
get_CreatedAt()100%11100%
get_ViewedAt()100%11100%
get_Metadata()100%11100%
get_TotalRows()100%11100%

File(s)

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

#LineLine coverage
 1namespace Estud.Back.Features.Notifications.GetNotifications;
 2
 3public class NotificationRow
 4{
 45    public int Id { get; set; }
 46    public short NotificationType { get; set; }
 47    public string Title { get; set; }
 48    public string Description { get; set; }
 49    public DateTime CreatedAt { get; set; }
 210    public DateTime? ViewedAt { get; set; }
 211    public string? Metadata { get; set; }
 412    public int TotalRows { get; set; }
 13}