Home
last modified time | relevance | path

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

/cts/tests/signature/api-check/src/java/android/signature/cts/api/
DTestResultObserver.java30 StringBuilder mErrorString = new StringBuilder(); field in TestResultObserver
37 mErrorString.append("\n"); in notifyFailure()
38 mErrorString.append(type.toString().toLowerCase()); in notifyFailure()
39 mErrorString.append(":\t"); in notifyFailure()
40 mErrorString.append(name); in notifyFailure()
41 mErrorString.append("\tError: "); in notifyFailure()
42 mErrorString.append(errorMessage); in notifyFailure()
44 mErrorString.append("\nMore than 100 failures, more errors will be elided."); in notifyFailure()
DAbstractApiTest.java94 StringBuilder errorString = mResultObserver.mErrorString; in runWithTestResultObserver()