using ScadaLink.Commons.Entities.Audit; using ScadaLink.Commons.Interfaces.Services; namespace ScadaLink.NotificationOutbox.Tests.TestSupport; /// /// Test-only no-op . Used by existing /// NotificationOutboxActor TestKit fixtures whose tests pre-date the M4 Bundle B /// audit-writer injection — they don't care about audit emission, they just /// need a non-null collaborator so the actor's constructor succeeds. /// internal sealed class NoOpCentralAuditWriter : ICentralAuditWriter { public Task WriteAsync(AuditEvent evt, CancellationToken ct = default) => Task.CompletedTask; }