< Summary

Information
Class: Syki.Back.Features.Academic.CreateNotification.NotificationConfig
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Academic/CreateNotification/NotificationConfig.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 14
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
Configure(...)100%11100%

File(s)

/home/runner/work/syki/syki/Back/Features/Academic/CreateNotification/NotificationConfig.cs

#LineLine coverage
 1namespace Syki.Back.Features.Academic.CreateNotification;
 2
 3public class NotificationConfig : IEntityTypeConfiguration<Notification>
 4{
 5    public void Configure(EntityTypeBuilder<Notification> notification)
 6    {
 27        notification.ToTable("notifications");
 8
 29        notification.HasKey(n => n.Id);
 210        notification.Property(n => n.Id).ValueGeneratedNever();
 11
 212        notification.Ignore(n => n.Views);
 213    }
 14}