< Summary - Syki

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

File(s)

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

#LineLine coverage
 1namespace Syki.Back.Shared;
 2
 3public class ScheduleOut
 4{
 05    public Day Day { get; set; }
 06    public Hour StartAt { get; set; }
 07    public Hour EndAt { get; set; }
 8
 09    public ScheduleOut() { }
 10
 011    public ScheduleOut(
 012        Day day,
 013        Hour startAt,
 014        Hour endAt
 015    ) {
 016        Day = day;
 017        StartAt = startAt;
 018        EndAt = endAt;
 019    }
 20}