< Summary - Kestrun — Combined Coverage

Information
Class: Kestrun.Health.ProbeResult
Assembly: Kestrun
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Health/ProbeResult.cs
Tag: Kestrun/Kestrun@5f1d2b981c9d7292c11fd448428c6ab6c811c5de
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 13
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 11/19/2025 - 17:40:50 Line coverage: 100% (5/5) Total lines: 13 Tag: Kestrun/Kestrun@fcf33342333cef0516fe0d0912a86709874fd026

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Status()100%11100%
get_Description()100%11100%
get_Data()100%11100%

File(s)

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

#LineLine coverage
 1namespace Kestrun.Health;
 2
 3/// <summary>
 4/// Result of a health probe check.
 5/// </summary>
 6/// <param name="Status">The status of the probe.</param>
 7/// <param name="Description">A description of the probe result.</param>
 8/// <param name="Data">Additional data related to the probe result.</param>
 579public sealed record ProbeResult(
 9210    ProbeStatus Status,
 5011    string? Description = null,
 6112    IReadOnlyDictionary<string, object>? Data = null
 5713);