File: NoOpTelemetryEventsHandler.cs
Web Access
Project: src\src\vstest\src\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj (Microsoft.TestPlatform.VsTestConsole.TranslationLayer)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;

namespace Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer;

internal class NoOpTelemetryEventsHandler : ITelemetryEventsHandler
{
    public void HandleTelemetryEvent(TelemetryEvent telemetryEvent)
    {
        // no op
    }
}