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(); }
public TestSpec(File testkit) { this.testkit = testkit; sections = defaultSections; reset(); }
public void selectSections(List<String> sectionNames) throws Exception { testPlans = getTestPlansFromSectionList(sectionNames); reset(); }