< Summary - Syki

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

File(s)

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

#LineLine coverage
 1using Syki.Back.Domain.Enums;
 2
 3namespace Syki.Back.Shared;
 4
 5public class CommandBatchTableOut
 6{
 07    public Guid Id { get; set; }
 08    public int Size { get; set; }
 09    public CommandBatchType Type { get; set; }
 010    public CommandBatchStatus Status { get; set; }
 011    public DateTime CreatedAt { get; set; }
 012    public DateTime? ProcessedAt { get; set; }
 13}