< Summary - Kestrun — Combined Coverage

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Total()100%11100%

File(s)

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

#LineLine coverage
 1namespace Kestrun.Health;
 2
 3/// <summary>
 4/// Summary counts of probe results grouped by <see cref="ProbeStatus"/>.
 5/// </summary>
 6/// <param name="Total">Total number of executed probes.</param>
 7/// <param name="Healthy">Number of probes reporting <see cref="ProbeStatus.Healthy"/>.</param>
 8/// <param name="Degraded">Number of probes reporting <see cref="ProbeStatus.Degraded"/>.</param>
 9/// <param name="Unhealthy">Number of probes reporting <see cref="ProbeStatus.Unhealthy"/>.</param>
 3310public sealed record HealthSummary(int Total, int Healthy, int Degraded, int Unhealthy);

Methods/Properties

get_Total()