Home
last modified time | relevance | path

Searched refs:mTestCaseFailures (Results 1 – 1 of 1) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/result/
DJUnit4ResultForwarder.java41 private List<Throwable> mTestCaseFailures; field in JUnit4ResultForwarder
45 mTestCaseFailures = new ArrayList<>(); in JUnit4ResultForwarder()
56 mTestCaseFailures.add(failure.getException()); in testFailure()
61 mTestCaseFailures.add(failure.getException()); in testAssumptionFailure()
66 mTestCaseFailures.clear(); in testStarted()
124 if (mTestCaseFailures.isEmpty()) { in handleFailures()
127 if (mTestCaseFailures.size() == 1) { in handleFailures()
128 Throwable t = mTestCaseFailures.get(0); in handleFailures()
136 new MultipleFailureException(mTestCaseFailures); in handleFailures()