예제 #1
0
파일: Runner.cs 프로젝트: MarMar/SeeFlaw
 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);
 }
예제 #2
0
 public ResultParser(XmlDocument doc, ErrorParser errParser, bool onlyTest)
 {
     this.doc = doc;
     this.errorParser = errParser;
     this.showNoTime = onlyTest;
 }