public void ResetEvents()
 {
     TestLogger.Log($"*** Clearing iot hub logs ({this.events.Count}) ***");
     this.events.Clear();
 }
 void AppendSerialLog(string message)
 {
     TestLogger.Log($"[SERIAL] {message}");
     this.serialLogs.Enqueue(message);
 }
 public void ClearSerialLogs()
 {
     TestLogger.Log($"*** Clearing serial logs ({this.serialLogs.Count}) ***");
     this.serialLogs.Clear();
 }
 protected void Log(string value) => TestLogger.Log(value);