< Summary

Information
Class: Syki.Shared.AdmInsightsOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Adm/GetAdmInsights/AdmInsightsOut.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 9
Uncovered lines: 0
Coverable lines: 9
Total lines: 16
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_Institutions()100%11100%
get_Users()100%11100%
get_Campi()100%11100%
get_Courses()100%11100%
get_Disciplines()100%11100%
get_CourseCurriculums()100%11100%
get_CourseOfferings()100%11100%
get_Teachers()100%11100%
get_Students()100%11100%

File(s)

/home/runner/work/syki/syki/Shared/Features/Adm/GetAdmInsights/AdmInsightsOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class AdmInsightsOut
 4{
 45    public int Institutions { get; set; }
 46    public int Users { get; set; }
 47    public int Campi { get; set; }
 8
 49    public int Courses { get; set; }
 410    public int Disciplines { get; set; }
 411    public int CourseCurriculums { get; set; }
 12
 413    public int CourseOfferings { get; set; }
 414    public int Teachers { get; set; }
 415    public int Students { get; set; }
 16}