コード例 #1
0
ファイル: TestSpec.java プロジェクト: karkaletsis/openxds
 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();
 }
コード例 #2
0
ファイル: TestSpec.java プロジェクト: karkaletsis/openxds
 public TestSpec(File testkit) {
   this.testkit = testkit;
   sections = defaultSections;
   reset();
 }
コード例 #3
0
ファイル: TestSpec.java プロジェクト: karkaletsis/openxds
 public void selectSections(List<String> sectionNames) throws Exception {
   testPlans = getTestPlansFromSectionList(sectionNames);
   reset();
 }