Exemplo n.º 1
0
 /**
  * Initialize the image folders, warning time and critical time for the current testcase with the
  * assigned initParameter.
  *
  * @param initParameter a initialized object of {@link TestCaseInitParameter}.
  */
 protected void initTestCaseAction(TestCaseInitParameter initParameter) {
   List<Path> imagePaths = initParameter.getImagePaths();
   testCaseAction.initWithPaths(
       this.initParameter.getTestCaseId(),
       this.initParameter.getWarningTime(),
       this.initParameter.getCriticalTime(),
       imagePaths.toArray(new Path[imagePaths.size()]));
 }