using ZB.MOM.WW.MxGateway.Worker.MxAccess;
namespace ZB.MOM.WW.MxGateway.Worker.Tests.TestSupport;
///
/// Shared no-operation for tests that construct
/// an but do not exercise the event sink.
/// Replaces the per-file NoopEventSink/NullEventSink copies that
/// were previously defined independently in MxAccessCommandExecutorTests and
/// AlarmCommandExecutorTests.
///
internal sealed class NoopEventSink : IMxAccessEventSink
{
///
public void Attach(object mxAccessComObject, string sessionId)
{
}
///
public void Detach()
{
}
}