コード例 #1
0
 public void ResetEvents()
 {
     TestLogger.Log($"*** Clearing iot hub logs ({this.events.Count}) ***");
     this.events.Clear();
 }
コード例 #2
0
 void AppendSerialLog(string message)
 {
     TestLogger.Log($"[SERIAL] {message}");
     this.serialLogs.Enqueue(message);
 }
コード例 #3
0
 public void ClearSerialLogs()
 {
     TestLogger.Log($"*** Clearing serial logs ({this.serialLogs.Count}) ***");
     this.serialLogs.Clear();
 }
コード例 #4
0
 protected void Log(string value) => TestLogger.Log(value);