< Summary - Kestrun — Combined Coverage

Information
Class: Kestrun.Scheduling.ScheduleReport
Assembly: Kestrun
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Scheduling/ScheduleReport.cs
Tag: Kestrun/Kestrun@9d3a582b2d63930269564a7591aa77ef297cadeb
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 16
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

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_GeneratedAt()100%11100%
get_Jobs()100%11100%

File(s)

/home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Scheduling/ScheduleReport.cs

#LineLine coverage
 1namespace Kestrun.Scheduling;
 2
 3/// <summary>
 4/// Represents a report of scheduled jobs at a specific time.
 5/// Contains the generation time and a list of job information.
 6/// This is useful for monitoring and auditing scheduled tasks.
 7/// </summary>
 8/// <param name="GeneratedAt">The time the report was generated.</param>
 9/// <param name="Jobs">The list of job information.</param>
 10/// <remarks>
 11/// This report can be used to track the status and execution history of scheduled jobs.
 12/// It is particularly useful for debugging and operational monitoring.
 13/// </remarks>
 214public sealed record ScheduleReport(
 215    DateTimeOffset GeneratedAt,
 516    IReadOnlyList<JobInfo> Jobs);