< Summary - Kestrun — Combined Coverage

Information
Class: Kestrun.Callback.CallbackResult
Assembly: Kestrun
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Callback/CallbackResult.cs
Tag: Kestrun/Kestrun@ca54e35c77799b76774b3805b6f075cdbc0c5fbe
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 17
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 01/02/2026 - 00:16:25 Line coverage: 100% (7/7) Total lines: 17 Tag: Kestrun/Kestrun@8405dc23b786b9d436fba0d65fb80baa4171e1d0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Success()100%11100%
get_StatusCode()100%11100%
get_ErrorType()100%11100%
get_ErrorMessage()100%11100%
get_CompletedAt()100%11100%

File(s)

/home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Callback/CallbackResult.cs

#LineLine coverage
 1namespace Kestrun.Callback;
 2
 3/// <summary>
 4/// Represents the result of a callback operation.
 5/// </summary>
 6/// <param name="Success">Indicates whether the callback was successful</param>
 7/// <param name="StatusCode">HTTP status code returned by the callback, if applicable</param>
 8/// <param name="ErrorType">Type of error encountered, if any (e.g., Timeout, Dns, Tls, Http5xx)</param>
 9/// <param name="ErrorMessage">Detailed error message, if any</param>
 10/// <param name="CompletedAt">Timestamp when the callback operation was completed</param>
 2411public sealed record CallbackResult(
 912    bool Success,
 3313    int? StatusCode,
 1214    string? ErrorType,              // Timeout, Dns, Tls, Http5xx, etc.
 215    string? ErrorMessage,
 116    DateTimeOffset CompletedAt
 2417);