< 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@2d87023b37eb91155071c91dd3d6a2eeb3004705
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 10/13/2025 - 16:52:37 Line coverage: 100% (5/5) Total lines: 13 Tag: Kestrun/Kestrun@10d476bee71c71ad215bb8ab59f219887b5b4a5e

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>
 459public sealed record ProbeResult(
 8510    ProbeStatus Status,
 4011    string? Description = null,
 3612    IReadOnlyDictionary<string, object>? Data = null
 4513);