< Summary

Information
Class: Syki.Shared.GetTeacherLessonAttendanceOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Teacher/GetTeacherLessonAttendances/GetTeacherLessonAttendanceOut.cs
Tag: 22_11348620282
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 9
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_LessonId()100%210%
get_StudentId()100%210%
get_StudentName()100%210%
get_Present()100%210%

File(s)

/home/runner/work/syki/syki/Shared/Features/Teacher/GetTeacherLessonAttendances/GetTeacherLessonAttendanceOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class GetTeacherLessonAttendanceOut
 4{
 05    public Guid LessonId { get; set; }
 06    public Guid StudentId { get; set; }
 07    public string StudentName { get; set; }
 08    public bool Present { get; set; }
 9}