< Summary - Syki

Information
Class: Syki.Shared.StudentClassNoteOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Teacher/GetTeacherClass/StudentClassNoteOut.cs
Tag: 4_16869239191
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 10
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_ClassId()100%11100%
get_StudentId()100%11100%
get_Type()100%11100%
get_Note()100%11100%

File(s)

/home/runner/work/syki/syki/Shared/Features/Teacher/GetTeacherClass/StudentClassNoteOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class StudentClassNoteOut
 4{
 1685    public Guid Id { get; set; }
 1686    public Guid ClassId { get; set; }
 1687    public Guid StudentId { get; set; }
 3008    public ClassNoteType Type { get; set; }
 3129    public decimal Note { get; set; }
 10}