stabilizaiton work - projects rework for maintenanceability and ui livening

This commit is contained in:
master
2026-02-03 23:40:04 +02:00
parent 074ce117ba
commit 557feefdc3
3305 changed files with 186813 additions and 107843 deletions

View File

@@ -0,0 +1,17 @@
// <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
};
}
}