< Summary - Syki

Information
Class: Syki.Shared.AcademicInsightsOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Academic/GetAcademicInsights/AcademicInsightsOut.cs
Tag: 4_16869239191
Line coverage
76%
Covered lines: 10
Uncovered lines: 3
Coverable lines: 13
Total lines: 23
Line coverage: 76.9%
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_Campus()100%11100%
get_Courses()100%11100%
get_Disciplines()100%11100%
get_CourseCurriculums()100%11100%
get_CourseOfferings()100%11100%
get_Classes()100%11100%
get_Teachers()100%11100%
get_Students()100%11100%
get_Notifications()100%11100%
get_Webhooks()100%11100%
GetExamples()100%210%

File(s)

/home/runner/work/syki/syki/Shared/Features/Academic/GetAcademicInsights/AcademicInsightsOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class AcademicInsightsOut
 4{
 85    public int Campus { get; set; }
 86    public int Courses { get; set; }
 87    public int Disciplines { get; set; }
 8
 89    public int CourseCurriculums { get; set; }
 810    public int CourseOfferings { get; set; }
 811    public int Classes { get; set; }
 12
 813    public int Teachers { get; set; }
 814    public int Students { get; set; }
 815    public int Notifications { get; set; }
 16
 617    public int Webhooks { get; set; }
 18
 19    public static IEnumerable<(string, AcademicInsightsOut)> GetExamples() =>
 020    [
 021        ("Exemplo", new() { }),
 022    ];
 23}