< Summary

Information
Class: Syki.Back.Features.Academic.GetStudents.GetStudentsService
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Academic/GetStudents/GetStudentsService.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 10
Uncovered lines: 0
Coverable lines: 10
Total lines: 17
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
.ctor(...)100%11100%
Get()100%11100%

File(s)

/home/runner/work/syki/syki/Back/Features/Academic/GetStudents/GetStudentsService.cs

#LineLine coverage
 1namespace Syki.Back.Features.Academic.GetStudents;
 2
 13public class GetStudentsService(SykiDbContext ctx) : IAcademicService
 4{
 5    public async Task<List<StudentOut>> Get(Guid institutionId)
 6    {
 17        var students = await ctx.Students
 18            .AsNoTracking().AsSplitQuery()
 19            .Include(a => a.User)
 110            .Include(a => a.CourseOffering)
 111                .ThenInclude(o => o.Course)
 112            .Where(a => a.InstitutionId == institutionId)
 113            .ToListAsync();
 14
 315        return students.ConvertAll(p => p.ToOut());
 116    }
 17}