< Summary

Information
Class: Syki.Shared.StudentInsightsOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Student/GetStudentInsights/StudentInsightsOut.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 13
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_Status()100%11100%
get_FinishedDisciplines()100%11100%
get_TotalDisciplines()100%11100%
get_Frequency()100%11100%
get_Average()100%11100%
get_YieldCoefficient()100%11100%

File(s)

/home/runner/work/syki/syki/Shared/Features/Student/GetStudentInsights/StudentInsightsOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class StudentInsightsOut
 4{
 85    public StudentStatus Status { get; set; }
 6
 87    public int FinishedDisciplines { get; set; }
 88    public int TotalDisciplines { get; set; }
 9
 810    public decimal Frequency { get; set; }
 811    public decimal Average { get; set; }
 612    public decimal YieldCoefficient { get; set; }
 13}