Searched refs:errors (Results 1 - 25 of 329) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/java/util/Objects/
H A DBasicObjectsTest.java36 int errors = 0;
37 errors += testEquals();
38 errors += testDeepEquals();
39 errors += testHashCode();
40 errors += testHash();
41 errors += testToString();
42 errors += testToString2();
43 errors += testCompare();
44 errors += testRequireNonNull();
45 errors
[all...]
/openjdk10/jdk/test/java/lang/annotation/
H A DTestIncompleteAnnotationExceptionNPE.java35 int errors = 0;
41 errors++;
48 errors++;
55 errors++;
60 if (errors != 0)
61 throw new RuntimeException("Encountered " + errors +
/openjdk10/langtools/test/tools/doclint/tool/
H A DMaxDiagsTest.java18 public void errors() { } method in class:MaxDiagsTest
H A DStatsTest.java16 public void errors() { } method in class:StatsTest
/openjdk10/jdk/test/java/lang/reflect/TypeVariable/
H A DTestAnnotatedElement.java42 int errors = 0;
45 errors += testTypeVariable(clazz.getTypeParameters());
46 errors += testTypeVariable(clazz.getDeclaredConstructor().getTypeParameters());
47 errors += testTypeVariable(clazz.getDeclaredMethod("m", Object.class).getTypeParameters());
49 if (errors > 0)
50 throw new RuntimeException(errors + " failures");
55 int errors = 0;
57 return ++errors;
62 errors++;
68 errors
[all...]
/openjdk10/jdk/test/java/lang/Double/
H A DBitwiseConversion.java38 int errors = 0;
54 errors++;
59 return errors;
63 int errors = 0;
66 errors += testNanCase(1L<<i);
71 errors++;
77 errors++;
81 if (errors > 0)
/openjdk10/jdk/test/java/lang/Float/
H A DBitwiseConversion.java38 int errors = 0;
54 errors++;
59 return errors;
63 int errors = 0;
66 errors += testNanCase(1<<i);
71 errors++;
77 errors++;
81 if (errors > 0)
/openjdk10/jdk/test/java/lang/reflect/Constructor/
H A DTestParameterAnnotations.java27 * @summary Verify getParameterAnnotations doesn't throw spurious errors
46 int errors = 0;
58 errors++;
61 return errors;
65 int errors = 0;
72 errors +=
74 errors +=
76 errors +=
78 errors +=
80 errors
[all...]
/openjdk10/jdk/test/java/lang/Integer/
H A DUnsigned.java32 int errors = 0;
34 errors += testRoundtrip();
35 errors += testByteToUnsignedInt();
36 errors += testShortToUnsignedInt();
37 errors += testUnsignedCompare();
38 errors += testToUnsignedLong();
39 errors += testToStringUnsigned();
40 errors += testParseUnsignedInt();
41 errors += testDivideAndRemainder();
43 if (errors >
[all...]
/openjdk10/jdk/test/java/math/BigDecimal/
H A DToPlainStringTests.java72 int errors = 0;
78 errors++;
85 errors++;
92 if(errors > 0)
93 throw new RuntimeException(errors + " errors during run.");
/openjdk10/jdk/test/java/util/ResourceBundle/modules/visibility/src/embargo/jdk/embargo/
H A DTestWithNoModuleArg.java41 int errors = 0;
50 errors++;
58 errors++;
63 errors++;
66 if (errors > 0) {
67 throw new RuntimeException(errors + " errors");
/openjdk10/jdk/test/java/util/ResourceBundle/modules/visibility/src/test/jdk/test/
H A DTestWithNoModuleArg.java41 int errors = 0;
50 errors++;
58 errors++;
63 errors++;
66 if (errors > 0) {
67 throw new RuntimeException(errors + " errors");
/openjdk10/jdk/test/java/util/ResourceBundle/modules/simple/src/test/jdk/test/
H A DMain.java31 int errors = 0;
44 errors++;
47 if (errors > 0) {
48 throw new RuntimeException(errors + " errors");
/openjdk10/jdk/test/java/util/ResourceBundle/modules/xmlformat/src/test/jdk/test/
H A DMain.java31 int errors = 0;
44 errors++;
47 if (errors > 0) {
48 throw new RuntimeException(errors + " errors");
/openjdk10/jdk/test/java/util/ResourceBundle/modules/basic/src/test/jdk/test/
H A DMain.java31 int errors = 0;
44 errors++;
47 if (errors > 0) {
48 throw new RuntimeException(errors + " errors");
/openjdk10/langtools/test/tools/doclint/
H A DOptionTest.java78 if (errors > 0)
79 throw new Exception(errors + " errors occurred");
93 errors++;
96 int errors; field in class:OptionTest
/openjdk10/jdk/test/java/math/BigInteger/
H A DTestValueExact.java34 int errors = 0;
36 errors += testLongValueExact();
37 errors += testIntValueExact();
38 errors += testShortValueExact();
39 errors += testByteValueExact();
41 if (errors > 0)
46 int errors = 0;
61 errors++;
70 errors++;
75 return errors;
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/
H A DIllegalAnnotationsException.java41 * This exception is used to report all the errors to the client application
48 private final List<IllegalAnnotationException> errors; field in class:IllegalAnnotationsException
52 public IllegalAnnotationsException(List<IllegalAnnotationException> errors) { argument
53 super(errors.size()+" counts of IllegalAnnotationExceptions");
54 assert !errors.isEmpty() : "there must be at least one error";
55 this.errors = Collections.unmodifiableList(new ArrayList<IllegalAnnotationException>(errors));
62 for( IllegalAnnotationException error : errors )
76 return errors;
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/parser/
H A DInaccessibleWSDLException.java37 * This exception is used to report all the errors during WSDL parsing from {@link RuntimeWSDLParser#parse(java.net.URL, javax.xml.transform.Source, org.xml.sax.EntityResolver, boolean, com.sun.xml.internal.ws.api.server.Container, com.sun.xml.internal.ws.api.wsdl.parser.WSDLParserExtension[])}
43 private final List<Throwable> errors; field in class:InaccessibleWSDLException
47 public InaccessibleWSDLException(List<Throwable> errors) { argument
48 super(errors.size()+" counts of InaccessibleWSDLException.\n");
49 assert !errors.isEmpty() : "there must be at least one error";
50 this.errors = Collections.unmodifiableList(new ArrayList<Throwable>(errors));
57 for( Throwable error : errors )
71 return errors;
/openjdk10/jdk/test/javax/xml/jaxp/testng/validation/
H A DSpecialCaseErrorHandler.java13 private HashMap errors; field in class:SpecialCaseErrorHandler
16 errors = new HashMap();
18 errors.put(specialCases[i], Boolean.FALSE);
23 for (Iterator iter = errors.keySet().iterator(); iter.hasNext();) {
25 errors.put(error, Boolean.FALSE);
39 for (Iterator iter = errors.keySet().iterator(); iter.hasNext();) {
42 errors.put(error, Boolean.TRUE);
52 return ((Boolean) errors.get(key)).booleanValue();
/openjdk10/jdk/test/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/
H A DMain.java33 int errors = 0;
46 errors++;
58 errors++;
63 if (errors > 0) {
64 throw new RuntimeException(errors + " errors");
/openjdk10/jdk/test/java/lang/Long/
H A DUnsigned.java35 int errors = 0;
37 errors += testRoundtrip();
38 errors += testByteToUnsignedLong();
39 errors += testShortToUnsignedLong();
40 errors += testUnsignedCompare();
41 errors += testToStringUnsigned();
42 errors += testParseUnsignedLong();
43 errors += testDivideAndRemainder();
45 if (errors > 0) {
46 throw new RuntimeException(errors
[all...]
/openjdk10/jdk/test/java/beans/Introspector/
H A DTest7172865.java38 int errors = 0;
42 errors += test(PropertyDescriptor.class, "good", true);
48 errors += test(PropertyDescriptor.class, "bad", false);
54 errors += test(IndexedPropertyDescriptor.class, "good", true);
62 errors += test(IndexedPropertyDescriptor.class, "bad", false);
72 errors += test("md", null != md.getMethod());
74 errors += test("pdGoodString", pdGoodString, true, true);
75 errors += test("pdGoodMethod", pdGoodMethod, true, true);
77 errors += test("pdBadString", pdBadString, true, false);
78 errors
[all...]
/openjdk10/jdk/test/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/
H A DMain.java34 int errors = 0;
46 errors++;
49 if (errors > 0) {
50 throw new RuntimeException(errors + " errors");
/openjdk10/jdk/test/java/util/ResourceBundle/modules/appbasic2/src/test/jdk/test/
H A DMain.java34 int errors = 0;
46 errors++;
49 if (errors > 0) {
50 throw new RuntimeException(errors + " errors");

Completed in 122 milliseconds

1234567891011>>