< Summary - Syki

Information
Class: Syki.Back.Shared.CommandBatchTableFilterIn
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Shared/Features/Adm/GetBatches/CommandBatchTableFilterIn.cs
Tag: 56_26538939494
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 10
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_InstitutionId()100%210%
get_Type()100%210%
get_Status()100%210%

File(s)

/home/runner/work/syki/syki/Back/Shared/Features/Adm/GetBatches/CommandBatchTableFilterIn.cs

#LineLine coverage
 1using Syki.Back.Domain.Enums;
 2
 3namespace Syki.Back.Shared;
 4
 5public class CommandBatchTableFilterIn
 6{
 07    public int? InstitutionId { get; set; }
 08    public CommandBatchType? Type { get; set; }
 09    public CommandBatchStatus? Status { get; set; }
 10}