15 lines
379 B
C#
15 lines
379 B
C#
using Inspectron.Epson.PrintServer.Telemetry;
|
|
|
|
namespace Inspectron.Epson.Tests.Telemetry;
|
|
|
|
public class NullInsinTelemetryTests
|
|
{
|
|
[Fact]
|
|
public void Emit_does_nothing_and_does_not_throw()
|
|
{
|
|
var telemetry = new NullInsinTelemetry();
|
|
var ex = Record.Exception(() => telemetry.Emit("service.started", "version=1.0.0"));
|
|
Assert.Null(ex);
|
|
}
|
|
}
|