// // Copyright (c) StellaOps. Licensed under BUSL-1.1. // namespace StellaOps.HybridLogicalClock.Tests; public sealed partial class HlcTimestampTests { private static HlcTimestamp CreateTimestamp(long physicalTime, string nodeId, int counter) { return new HlcTimestamp { PhysicalTime = physicalTime, NodeId = nodeId, LogicalCounter = counter }; } }