Refactor code structure and optimize performance across multiple modules

This commit is contained in:
StellaOps Bot
2025-12-26 20:03:22 +02:00
parent c786faae84
commit b4fc66feb6
3353 changed files with 88254 additions and 1590657 deletions

View File

@@ -11,7 +11,8 @@ namespace StellaOps.Signals.Reachability.Tests;
public sealed class RuntimeFactsNdjsonReaderTests
{
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public async Task ReadAsync_ParsesLines()
{
var ndjson = """
@@ -29,7 +30,8 @@ public sealed class RuntimeFactsNdjsonReaderTests
events[1].LoaderBase.Should().Be("0x1000");
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public async Task ReadAsync_HandlesGzip()
{
var ndjson = """
@@ -40,6 +42,7 @@ public sealed class RuntimeFactsNdjsonReaderTests
await using (var writer = new StreamWriter(gzip, Encoding.UTF8, leaveOpen: true))
{
await writer.WriteAsync(ndjson);
using StellaOps.TestKit;
}
compressed.Position = 0;