< Summary - Kestrun — Combined Coverage

Information
Class: Kestrun.Certificates.JwkJson
Assembly: Kestrun
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Certificates/JwkJson.cs
Tag: Kestrun/Kestrun@0d738bf294e6281b936d031e1979d928007495ff
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 20
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 - 02:25:56 Line coverage: 100% (6/6) Total lines: 20 Tag: Kestrun/Kestrun@98ff905e5605a920343154665980a71211a03c6d

Metrics

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

File(s)

/home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Certificates/JwkJson.cs

#LineLine coverage
 1
 2using System.Text.Json;
 3using System.Text.Json.Serialization;
 4
 5namespace Kestrun.Certificates;
 6/// <summary>
 7/// JSON serializer options for JWK serialization.
 8/// </summary>
 9public static class JwkJson
 10{
 11    /// <summary>
 12    /// JSON serializer options for JWK serialization.
 13    /// </summary>
 114    public static readonly JsonSerializerOptions Options = new()
 115    {
 116        PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
 117        DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
 118        WriteIndented = false
 119    };
 20}

Methods/Properties

.cctor()