Esempio n. 1
0
 public TestSpec(File testkit, String testNum, String[] sections) throws Exception {
   this.testkit = testkit;
   this.testNum = testNum;
   this.sections = sections;
   verifyCurrentTestExists(testkit, testNum);
   testPlans = getTestPlans();
   reset();
 }
Esempio n. 2
0
 public TestSpec(File testkit) {
   this.testkit = testkit;
   sections = defaultSections;
   reset();
 }
Esempio n. 3
0
 public void selectSections(List<String> sectionNames) throws Exception {
   testPlans = getTestPlansFromSectionList(sectionNames);
   reset();
 }