This commit is contained in:
master
2026-02-04 19:59:20 +02:00
parent 557feefdc3
commit 5548cf83bf
1479 changed files with 53557 additions and 40339 deletions

View File

@@ -67,4 +67,13 @@ public sealed partial class PostgresEvidenceStoreIntegrationTests
storedCount.Should().Be(1);
}
[Trait("Category", TestCategories.Unit)]
[Fact]
public async Task StoreBatchAsync_WithEmptyInput_ReturnsZeroAsync()
{
var storedCount = await _store.StoreBatchAsync(Array.Empty<IEvidence>());
storedCount.Should().Be(0);
}
}

View File

@@ -13,3 +13,4 @@ Source of truth: `docs-archived/implplan/2025-12-29-csproj-audit/SPRINT_20251229
| AUDIT-0285-A | DONE | Waived (test project; revalidated 2026-01-07). |
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
| REMED-2026-02-03 | DONE | Split integration tests into partials, normalized async naming, deterministic fixtures; tests passed 2026-02-03. |
| REMED-07 | DONE | Added StoreBatch empty-input coverage; tests passed 2026-02-04 (35 tests). |