Files
git.stella-ops.org/src/__Libraries/StellaOps.HybridLogicalClock.Tests/HlcTimestampTests.Helpers.cs

18 lines
504 B
C#

// <copyright file="HlcTimestampTests.Helpers.cs" company="StellaOps">
// Copyright (c) StellaOps. Licensed under BUSL-1.1.
// </copyright>
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
};
}
}