< Summary - Kestrun — Combined Coverage

Information
Class: OpenApiCallbackRefAttribute
Assembly: Kestrun.Annotations
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun.Annotations/OpenApi/Attributes/OpenApiCallbackRefAttribute.cs
Tag: Kestrun/Kestrun@ca54e35c77799b76774b3805b6f075cdbc0c5fbe
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 18
Line coverage: 0%
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 12/27/2025 - 20:05:22 Line coverage: 0% (0/3) Total lines: 18 Tag: Kestrun/Kestrun@dec745d62965b14e1ed62c0f3ec815e60e53366f

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Key()100%210%
get_ReferenceId()100%210%
get_Inline()100%210%

File(s)

/home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun.Annotations/OpenApi/Attributes/OpenApiCallbackRefAttribute.cs

#LineLine coverage
 1[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
 2public sealed class OpenApiCallbackRefAttribute : KestrunAnnotation
 3{
 4    /// <summary>
 5    /// The local name under callbacks
 6    /// </summary>
 07    public required string Key { get; set; }
 8
 9    /// <summary>
 10    /// The components/callbacks id (the ID of the callback component to reference).
 11    /// </summary>
 012    public required string ReferenceId { get; set; }
 13
 14    /// <summary>
 15    /// If true, the callback will be inlined rather than referenced.
 16    /// </summary>
 017    public bool Inline { get; set; }
 18}