Home
last modified time | relevance | path

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

/external/junit/src/org/junit/internal/runners/
DMethodValidator.java24 private final List<Throwable> fErrors= new ArrayList<Throwable>(); field in MethodValidator
39 fErrors.add(new Exception("No runnable methods")); in validateInstanceMethods()
51 return fErrors; in validateMethodsForDefaultRunner()
55 if (!fErrors.isEmpty()) in assertValid()
56 throw new InitializationError(fErrors); in assertValid()
63 fErrors.add(new Exception("Test class should have public zero-argument constructor", e)); in validateNoArgConstructor()
74 fErrors.add(new Exception("Method " + each.getName() + "() " in validateTestMethods()
78 fErrors.add(new Exception("Class " + each.getDeclaringClass().getName() in validateTestMethods()
81 fErrors.add(new Exception("Method " + each.getName() in validateTestMethods()
84 fErrors.add(new Exception("Method " + each.getName() in validateTestMethods()
[all …]
DInitializationError.java13 private final List<Throwable> fErrors; field in InitializationError
16 fErrors= errors; in InitializationError()
28 return fErrors; in getCauses()
/external/junit/src/org/junit/runners/model/
DMultipleFailureException.java15 private final List<Throwable> fErrors; field in MultipleFailureException
18 fErrors= new ArrayList<Throwable>(errors); in MultipleFailureException()
22 return Collections.unmodifiableList(fErrors); in getFailures()
28 String.format("There were %d errors:", fErrors.size())); in getMessage()
29 for (Throwable e : fErrors) { in getMessage()
DInitializationError.java11 private final List<Throwable> fErrors; field in InitializationError
18 fErrors= errors; in InitializationError()
37 return fErrors; in getCauses()
/external/junit/src/junit/framework/
DTestResult.java21 protected Vector<TestFailure> fErrors; field in TestResult
30 fErrors= new Vector<TestFailure>(); in TestResult()
41 fErrors.add(new TestFailure(test, t)); in addError()
85 return fErrors.size(); in errorCount()
91 return Collections.enumeration(fErrors); in errors()
/external/icu/icu4c/source/test/intltest/
Dsimplethread.cpp467 UBool getError() { return (fErrors > 0); } in getError()
468 … UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (fErrors > 0); } in getError()
471 ThreadWithStatus() : fErrors(0) {} in ThreadWithStatus()
473 fErrors++; fErrorString = error; in error()
478 int32_t fErrors; member in ThreadWithStatus
Dtsmthred.cpp588 UBool getError() { return (fErrors > 0); } in getError()
589 … UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (fErrors > 0); } in getError()
592 ThreadWithStatus() : fErrors(0) {} in ThreadWithStatus()
594 fErrors++; fErrorString = error; in error()
599 int32_t fErrors; member in ThreadWithStatus
/external/skia/tests/
DPictureTest.cpp848 int fErrors; member
854 errorContext->fErrors++; in assert_one_parse_error_cb()
857 REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->fErrors, in assert_one_parse_error_cb()
886 context.fErrors = 0; in test_bitmap_with_encoded_data()