Example #1
0
 public TaskResultEntry(string name, string desc, string path, FileProcessType processType)
 {
     Name        = name;
     Description = desc;
     Path        = path;
     ProcessType = processType;
 }
        protected override void Start()
        {
            string path = testConfig.path;

            Logger.Log("test log");

            FileProcessType type = (FileProcessType)(Enum.Parse(typeof(FileProcessType), testConfig.type));

            AddResult(Path.GetFileNameWithoutExtension(testConfig.path), testConfig.path, "");
        }