< Summary

Information
Class: Punch.CLI.TimeBlockDto
Assembly: punch
File(s): /home/runner/work/punch/punch/src/Punch.CLI/PunchData.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 14
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
get_StartSlot()100%11100%
get_Length()100%11100%
get_Label()100%11100%
get_Ticket()100%11100%

File(s)

/home/runner/work/punch/punch/src/Punch.CLI/PunchData.cs

#LineLine coverage
 1namespace Punch.CLI;
 2
 3internal sealed class PunchData
 4{
 5    public List<TimeBlockDto> Blocks { get; set; } = new();
 6}
 7
 8internal sealed class TimeBlockDto
 9{
 26010    public int StartSlot { get; set; }
 21711    public int Length { get; set; }
 9112    public string Label { get; set; } = "";
 9013    public string Ticket { get; set; } = "";
 14}