public void SetUpTest() { runDetails = new RunnerDetails(new Dictionary<string, string>()); runner = new Runner(true, runDetails); doc = new System.Xml.XmlDocument(); errParser = new ErrorParser(); parser = new ResultParser(doc, errParser, true); }
public ResultParser(XmlDocument doc, ErrorParser errParser, bool onlyTest) { this.doc = doc; this.errorParser = errParser; this.showNoTime = onlyTest; }