• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

me-viper / OpaDotNet / 11512106788

25 Oct 2024 04:51AM CUT coverage: 84.386%. Remained the same
11512106788

push

github

me-viper
ci: Add CI inputs

1820 of 2364 branches covered (76.99%)

Branch coverage included in aggregate %.

3817 of 4316 relevant lines covered (88.44%)

1737.21 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/Wasm/src/GoCompat/BigIntJsonConverter.cs
1
using System.Globalization;
2
using System.Text.Json.Serialization;
3

4
namespace OpaDotNet.Wasm.GoCompat;
5

6
internal class BigIntJsonConverter : JsonConverter<BigIntJson>
7
{
8
    public override BigIntJson Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
9
    {
10
        throw new NotImplementedException();
×
11
    }
12

13
    public override void Write(Utf8JsonWriter writer, BigIntJson value, JsonSerializerOptions options)
14
    {
15
        writer.WriteRawValue(value.N.ToString("e15", CultureInfo.InvariantCulture));
218✔
16
    }
218✔
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc