16 lines
653 B
C#
16 lines
653 B
C#
using ZB.MOM.WW.Audit;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Interfaces.Services;
|
|
|
|
namespace ZB.MOM.WW.ScadaBridge.NotificationOutbox.Tests.TestSupport;
|
|
|
|
/// <summary>
|
|
/// Test-only no-op <see cref="ICentralAuditWriter"/>. 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.
|
|
/// </summary>
|
|
internal sealed class NoOpCentralAuditWriter : ICentralAuditWriter
|
|
{
|
|
public Task WriteAsync(AuditEvent evt, CancellationToken ct = default) => Task.CompletedTask;
|
|
}
|