mirror of
https://github.com/farcasclaudiu/LanBackup.git
synced 2026-06-24 17:00:49 +03:00
18 lines
322 B
C#
18 lines
322 B
C#
using System;
|
|
using LanBackup.WebApp.Models.Telemetry;
|
|
|
|
namespace LanBackup.WebApp.Tests.IntegrationTests
|
|
{
|
|
internal class MockTelemetry : ITelemetryLogger
|
|
{
|
|
public void TrackEvent(string eventmsg)
|
|
{
|
|
//DO NOTHING
|
|
}
|
|
|
|
public void TrackException(Exception ex)
|
|
{
|
|
//DO NOTHING
|
|
}
|
|
}
|
|
} |