Package com.baidu.qa.service.test.dto

Examples of com.baidu.qa.service.test.dto.CaseSuite


      List<CaseData> cases = getCasedataFromFolder(resultpaths.get(i));
      if (cases == null || cases.size() == 0) {
        continue;
      }
      CaseSuite casesuite = new CaseSuite(resultpaths.get(i), cases);

      casesuites.add(casesuite);
    }

    return (casesuites);
View Full Code Here


          String suitepath = searchUPFolders(rootpath + "/"
              + path.trim(), Constant.FILENAME_CONFIG, rootpath);
          List<CaseData> cl = new ArrayList<CaseData>();
          cl.add(onecase);
          if (suitepath != null) {
            CaseSuite cs = new CaseSuite(suitepath, cl);
            casesuitelist.add(cs);
          }
        }
      }
      // 如果是文件夹
View Full Code Here

TOP

Related Classes of com.baidu.qa.service.test.dto.CaseSuite

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.