< Summary - Syki

Information
Class: Syki.Shared.BatchOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Adm/GetBatch/BatchOut.cs
Tag: 4_16869239191
Line coverage
0%
Covered lines: 0
Uncovered lines: 10
Coverable lines: 10
Total lines: 16
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_Type()100%210%
get_Status()100%210%
get_CreatedAt()100%210%
get_ProcessedAt()100%210%
get_EventId()100%210%
get_SourceCommandId()100%210%
get_NextCommandId()100%210%
get_Size()100%210%
get_Commands()100%210%

File(s)

/home/runner/work/syki/syki/Shared/Features/Adm/GetBatch/BatchOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class BatchOut
 4{
 05    public Guid Id { get; set; }
 06    public CommandBatchType Type { get; set; }
 07    public CommandBatchStatus Status { get; set; }
 08    public DateTime CreatedAt { get; set; }
 09    public DateTime? ProcessedAt { get; set; }
 010    public Guid? EventId { get; set; }
 011    public Guid? SourceCommandId { get; set; }
 012    public Guid? NextCommandId { get; set; }
 013    public int Size { get; set; }
 14
 015    public List<CommandOut> Commands { get; set; } = [];
 16}