Searched refs:notExpected (Results 1 - 4 of 4) sorted by relevance

/openjdk10/langtools/test/tools/javac/api/
H A DT6395981.java51 Set<SourceVersion> notExpected = EnumSet.copyOf(found);
56 notExpected.remove(version);
58 if (!notExpected.isEmpty())
59 throw new AssertionError("Unexpected source versions: " + notExpected);
/openjdk10/langtools/test/tools/javac/scope/
H A DDupUnsharedTest.java75 Set<Symbol> notExpected = Collections.newSetFromMap(new IdentityHashMap<>());
81 fillScope(s2, notExpected, a);
83 fillScope(s3, notExpected, b);
89 for (Symbol sym : notExpected) {
100 void fillScope(WriteableScope scope, Set<Symbol> notExpected, Name name) { argument
106 notExpected.add(var1);
107 notExpected.add(var2);
/openjdk10/jdk/test/sanity/client/lib/Extensions/src/org/jemmy2ext/
H A DJemmyExt.java164 public static void assertNotEquals(String string, StrictImageComparator comparator, BufferedImage notExpected, BufferedImage actual) { argument
166 assertFalse(string, comparator.compare(notExpected, actual));
168 save(notExpected, "notExpected.png");
/openjdk10/langtools/test/jdk/jshell/
H A DKullaTesting.java908 public void assertCompletionIncludesExcludes(String code, Set<String> expected, Set<String> notExpected) { argument
909 assertCompletionIncludesExcludes(code, null, expected, notExpected);
912 public void assertCompletionIncludesExcludes(String code, Boolean isSmart, Set<String> expected, Set<String> notExpected) { argument
915 assertTrue(Collections.disjoint(completions, notExpected), String.valueOf(completions));

Completed in 103 milliseconds