Searched defs:errors (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DUncaughtExceptionsRule.java71 final ArrayList<Throwable> errors = new ArrayList<Throwable>();
76 errors.add(t);
83 errors.add(new UncaughtExceptionsInBackgroundThread(e));
88 if (hasNonAssumptionErrors(errors)) {
97 MultipleFailureException.assertEmpty(errors);
102 private boolean hasNonAssumptionErrors(ArrayList<Throwable> errors) { argument
103 for (Throwable t : errors) {

Completed in 554 milliseconds