// // Copyright (c) StellaOps. Licensed under BUSL-1.1. // using System.Text.Json; using Xunit; namespace StellaOps.HybridLogicalClock.Tests; /// /// Unit tests for . /// [Trait("Category", "Unit")] public sealed partial class HlcTimestampJsonConverterTests { private readonly JsonSerializerOptions _options = new() { Converters = { new HlcTimestampJsonConverter() } }; private sealed class TestWrapper { public HlcTimestamp Timestamp { get; set; } public string? Name { get; set; } } }