Exemplo n.º 1
0
 /**
  * Tell the task how to handle errors. If set to true, the task will stop execution if an error
  * occurs. If set to false, the task will continue exectuion.
  *
  * @param value true, if the task should stop execution on errors
  */
 public void setHaltonerror(boolean value) {
   for (JUnitEETest test : tests) {
     test.setHaltonerror(value);
   }
 }