OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fErrors
(Results
1 - 25
of
42
) sorted by null
1
2
/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/icu/icu4c/source/test/intltest/
simplethread.cpp
467
UBool getError() { return (
fErrors
> 0); }
468
UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (
fErrors
> 0); }
471
ThreadWithStatus() :
fErrors
(0) {}
473
fErrors
++; fErrorString = error;
478
int32_t
fErrors
;
tsmthred.cpp
588
UBool getError() { return (
fErrors
> 0); }
589
UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (
fErrors
> 0); }
592
ThreadWithStatus() :
fErrors
(0) {}
594
fErrors
++; fErrorString = error;
599
int32_t
fErrors
;
[
all
...]
/external/skia/tests/
PictureTest.cpp
848
int
fErrors
;
854
errorContext->
fErrors
++;
857
REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->
fErrors
,
886
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/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
/prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar
/prebuilts/tools/common/m2/repository/junit/junit-dep/4.10/
junit-dep-4.10.jar
/prebuilts/devtools/tools/lib/
junit-4.12.jar
/prebuilts/tools/common/m2/repository/junit/junit/4.12/
junit-4.12.jar
/prebuilts/misc/common/android-support-test/
android-support-test.jar
Completed in 236 milliseconds
1
2