Frontend gaps fill work. Testing fixes work. Auditing in progress.

This commit is contained in:
StellaOps Bot
2025-12-30 01:22:58 +02:00
parent 1dc4bcbf10
commit 7a5210e2aa
928 changed files with 183942 additions and 3941 deletions

View File

@@ -93,9 +93,9 @@ public sealed class NvdConnectorHarnessTests : IAsyncLifetime
Assert.Equal(3, pendingDocuments.Count);
}
public Task InitializeAsync() => Task.CompletedTask;
public ValueTask InitializeAsync() => ValueTask.CompletedTask;
public Task DisposeAsync() => _harness.ResetAsync();
public ValueTask DisposeAsync() => new(_harness.ResetAsync());
private static Uri BuildRequestUri(NvdOptions options, DateTimeOffset start, DateTimeOffset end, int startIndex = 0)
{
@@ -134,3 +134,6 @@ public sealed class NvdConnectorHarnessTests : IAsyncLifetime
throw new FileNotFoundException($"Fixture '{filename}' was not found in the test output directory.");
}
}

View File

@@ -642,10 +642,13 @@ public sealed class NvdConnectorTests : IAsyncLifetime
throw new FileNotFoundException($"Fixture '{filename}' was not found in the test output directory.");
}
public Task InitializeAsync() => Task.CompletedTask;
public ValueTask InitializeAsync() => ValueTask.CompletedTask;
public async Task DisposeAsync()
public async ValueTask DisposeAsync()
{
await ResetDatabaseInternalAsync();
}
}