HomeSort by relevance Sort by last modified time
    Searched defs:fErrors (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/junit/src/org/junit/internal/runners/
InitializationError.java 13 private final List<Throwable> fErrors;
16 fErrors= errors;
28 return fErrors;
MethodValidator.java 24 private final List<Throwable> fErrors= new ArrayList<Throwable>();
39 fErrors.add(new Exception("No runnable methods"));
51 return fErrors;
55 if (!fErrors.isEmpty())
56 throw new InitializationError(fErrors);
63 fErrors.add(new Exception("Test class should have public zero-argument constructor", e));
74 fErrors.add(new Exception("Method " + each.getName() + "() "
78 fErrors.add(new Exception("Class " + each.getDeclaringClass().getName()
81 fErrors.add(new Exception("Method " + each.getName()
84 fErrors.add(new Exception("Method " + each.getName(
    [all...]
  /external/junit/src/org/junit/runners/model/
InitializationError.java 11 private final List<Throwable> fErrors;
18 fErrors= errors;
37 return fErrors;
MultipleFailureException.java 15 private final List<Throwable> fErrors;
18 fErrors= new ArrayList<Throwable>(errors);
22 return Collections.unmodifiableList(fErrors);
28 String.format("There were %d errors:", fErrors.size()));
29 for (Throwable e : fErrors) {
  /external/junit/src/junit/framework/
TestResult.java 21 protected Vector<TestFailure> fErrors;
30 fErrors= new Vector<TestFailure>();
41 fErrors.add(new TestFailure(test, t));
85 return fErrors.size();
91 return Collections.enumeration(fErrors);
  /external/skia/tests/
PictureTest.cpp 860 int fErrors;
866 errorContext->fErrors++;
869 REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->fErrors,
910 context.fErrors = 0;
    [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /cts/tools/vm-tests-tf/lib/
junit.jar 
  /external/dexmaker/lib/
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 
  /external/guice/lib/build/
junit.jar 
  /external/jsr330/lib/
junit.jar 
  /external/slf4j/integration/lib/
junit-3.8.1.jar 
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
junit-3.8.1.jar 
  /prebuilts/devtools/adt/lib/
junit-3.8.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/junit/junit/3.8.1/
junit-3.8.1.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/3.8.1/
junit-3.8.1.jar 
  /external/libphonenumber/lib/
junit-4.8.1.jar 
  /external/opencv3/modules/java/pure_test/lib/
junit-4.11.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.8.2/
junit-4.8.2.jar 
  /prebuilts/tools/common/m2/repository/junit/junit-dep/4.10/
junit-dep-4.10.jar 
  /prebuilts/devtools/tools/lib/
junit-4.12.jar 

Completed in 274 milliseconds

1 2 3