public VSTestResult(string outcome, VSTestResultCounters counters, IReadOnlyList <string> runErrors = null, IReadOnlyList <string> runWarnings = null) { Outcome = outcome; Counters = counters; RunErrors = runErrors ?? Array.Empty <string>(); RunWarnings = runWarnings ?? Array.Empty <string>(); }
public VSTestResult(ProcessRunResult processRunResult) { ProcessRunResult = processRunResult; Outcome = ""; Counters = VSTestResultCounters.CreateEmptyCounters(); RunErrors = Array.Empty <string>(); RunWarnings = Array.Empty <string>(); }
public VSTestResult(string outcome, VSTestResultCounters counters) { Outcome = outcome; Counters = counters; }