< Summary - Syki

Information
Class: Syki.Back.Shared.CommandTableOut
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Shared/Features/Adm/GetCommands/CommandTableOut.cs
Tag: 56_26538939494
Line coverage
0%
Covered lines: 0
Uncovered lines: 7
Coverable lines: 7
Total lines: 14
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_Description()100%210%
get_Status()100%210%
get_CreatedAt()100%210%
get_ProcessedAt()100%210%
get_Duration()100%210%

File(s)

/home/runner/work/syki/syki/Back/Shared/Features/Adm/GetCommands/CommandTableOut.cs

#LineLine coverage
 1using Syki.Back.Domain.Enums;
 2
 3namespace Syki.Back.Shared;
 4
 5public class CommandTableOut
 6{
 07    public Guid Id { get; set; }
 08    public string Type { get; set; }
 09    public string Description { get; set; }
 010    public CommandStatus Status { get; set; }
 011    public DateTime CreatedAt { get; set; }
 012    public DateTime? ProcessedAt { get; set; }
 013    public int Duration { get; set; }
 14}