예제 #1
0
파일: Tester.cs 프로젝트: cjus/mcww
 public Tester(MainForm mainForm, TestTree testTree, ListView listView, ArrayList  testDataList)
 {
     this.mainForm = mainForm;
     this.testTree = testTree;
     this.listView = listView;
     this.testDataList = testDataList;
 }
예제 #2
0
        public ReportGenerator(MainForm mainForm)
        {
            statsEngine = new Stats();
            this.mainForm = mainForm;

            // ensure report has a subfolder
            reportPath = Directory.GetCurrentDirectory() + "\\report";
            Directory.CreateDirectory(reportPath);
        }