public IgnoreHangfireTelemetryTests()
 {
     next = new TestTelemetryProcessor();
     sut  = new IgnoreHangfireTelemetry(
         next,
         "Server=Test;Database=Hangfire;Trusted_Connection=True;");
 }
 public IgnorePathsTelemetryTests()
 {
     next = new TestTelemetryProcessor();
     sut  = new IgnorePathsTelemetry(next, "/ignore");
 }