< Summary - Syki

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

File(s)

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

#LineLine coverage
 1namespace Syki.Back.Shared;
 2
 3public class AdmInsightsOut
 4{
 05    public int Institutions { get; set; }
 06    public int Users { get; set; }
 07    public int Campi { get; set; }
 8
 09    public int Courses { get; set; }
 010    public int Disciplines { get; set; }
 011    public int CourseCurriculums { get; set; }
 12
 013    public int CourseOfferings { get; set; }
 014    public int Teachers { get; set; }
 015    public int Students { get; set; }
 16}