< Summary - Kestrun — Combined Coverage

Information
Class: Kestrun.Health.HealthReport
Assembly: Kestrun
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Health/HealthReport.cs
Tag: Kestrun/Kestrun@2d87023b37eb91155071c91dd3d6a2eeb3004705
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 18
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 10/13/2025 - 16:52:37 Line coverage: 100% (7/7) Total lines: 18 Tag: Kestrun/Kestrun@10d476bee71c71ad215bb8ab59f219887b5b4a5e

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Status()100%11100%
get_StatusText()100%11100%
get_GeneratedAt()100%11100%
get_Probes()100%11100%
get_Summary()100%11100%
get_AppliedTags()100%11100%

File(s)

/home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Health/HealthReport.cs

#LineLine coverage
 1namespace Kestrun.Health;
 2
 3/// <summary>
 4/// Represents an aggregated health report produced by <see cref="HealthProbeRunner"/>.
 5/// </summary>
 6/// <param name="Status">Overall status calculated from all probe results.</param>
 7/// <param name="StatusText">Lowercase textual representation of <see cref="Status"/>.</param>
 8/// <param name="GeneratedAt">UTC timestamp the report was produced.</param>
 9/// <param name="Probes">Detailed results for each executed probe.</param>
 10/// <param name="Summary">Aggregated counts per <see cref="ProbeStatus"/>.</param>
 11/// <param name="AppliedTags">Tag filters applied to this report.</param>
 1612public sealed record HealthReport(
 713    ProbeStatus Status,
 314    string StatusText,
 315    DateTimeOffset GeneratedAt,
 1416    IReadOnlyList<HealthProbeEntry> Probes,
 817    HealthSummary Summary,
 2418    IReadOnlyList<string> AppliedTags);