using ZB.MOM.WW.Audit; using ZB.MOM.WW.ScadaBridge.Commons.Interfaces.Services; namespace ZB.MOM.WW.ScadaBridge.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; }