< Summary - Syki

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

File(s)

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

#LineLine coverage
 1namespace Syki.Back.Shared;
 2
 3public class StudentInsightsOut
 4{
 05    public StudentStatus Status { get; set; }
 6
 07    public int FinishedDisciplines { get; set; }
 08    public int TotalDisciplines { get; set; }
 9
 010    public decimal Frequency { get; set; }
 011    public decimal Average { get; set; }
 012    public decimal YieldCoefficient { get; set; }
 13}