< Summary - Syki

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

File(s)

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

#LineLine coverage
 1namespace Syki.Back.Shared;
 2
 3public class AcademicInsightsOut : IApiDto<AcademicInsightsOut>
 4{
 05    public int Campus { get; set; }
 06    public int Courses { get; set; }
 07    public int Disciplines { get; set; }
 8
 09    public int CourseCurriculums { get; set; }
 010    public int CourseOfferings { get; set; }
 011    public int Classes { get; set; }
 12
 013    public int Teachers { get; set; }
 014    public int Students { get; set; }
 015    public int Notifications { get; set; }
 16
 017    public int Webhooks { get; set; }
 18
 19    public static IEnumerable<(string, AcademicInsightsOut)> GetExamples() =>
 020    [
 021        ("Exemplo", new() { }),
 022    ];
 23}