public JsonTableRowWithTestResult(IEnumerable <string> cells, JsonTestResult result) : base(cells) { if (result != null) { this.Result = result; Add(result); } }
public JsonTableRow(IEnumerable <string> cells, JsonTestResult result) { AddRange(cells); this.Result = result; Add(result); }