예제 #1
0
 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>();
 }
예제 #2
0
 public VSTestResult(ProcessRunResult processRunResult)
 {
     ProcessRunResult = processRunResult;
     Outcome          = "";
     Counters         = VSTestResultCounters.CreateEmptyCounters();
     RunErrors        = Array.Empty <string>();
     RunWarnings      = Array.Empty <string>();
 }
예제 #3
0
 public VSTestResult(string outcome, VSTestResultCounters counters)
 {
     Outcome  = outcome;
     Counters = counters;
 }