< Summary - Estud

Information
Class: Estud.Back.Shared.ScheduleOut
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Shared/Features/Academic/CreateClass/ScheduleOut.cs
Tag: 114_29044117136
Line coverage
100%
Covered lines: 13
Uncovered lines: 0
Coverable lines: 13
Total lines: 20
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_Day()100%11100%
get_StartAt()100%11100%
get_EndAt()100%11100%
.ctor()100%11100%
.ctor(...)100%11100%

File(s)

/home/runner/work/syki/syki/Back/Shared/Features/Academic/CreateClass/ScheduleOut.cs

#LineLine coverage
 1namespace Estud.Back.Shared;
 2
 3public class ScheduleOut
 4{
 125    public Day Day { get; set; }
 126    public Hour StartAt { get; set; }
 127    public Hour EndAt { get; set; }
 8
 89    public ScheduleOut() { }
 10
 411    public ScheduleOut(
 412        Day day,
 413        Hour startAt,
 414        Hour endAt
 415    ) {
 416        Day = day;
 417        StartAt = startAt;
 418        EndAt = endAt;
 419    }
 20}