Searched refs:expectedSet (Results 1 – 6 of 6) sorted by relevance
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableRangeSetTest.java | 391 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSet() local 393 assertEquals(expectedSet, asSet); in testAsSet() 394 assertThat(asSet).has().exactlyAs(expectedSet).inOrder(); in testAsSet() 395 assertTrue(asSet.containsAll(expectedSet)); in testAsSet() 407 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetHeadSet() local 411 assertEquals(asSet.headSet(i, false), expectedSet.headSet(i, false)); in testAsSetHeadSet() 412 assertEquals(asSet.headSet(i, true), expectedSet.headSet(i, true)); in testAsSetHeadSet() 424 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetTailSet() local 428 assertEquals(asSet.tailSet(i, false), expectedSet.tailSet(i, false)); in testAsSetTailSet() 429 assertEquals(asSet.tailSet(i, true), expectedSet.tailSet(i, true)); in testAsSetTailSet() [all …]
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
D | SmaliCodeFragmentFactoryTest.java | 239 HashSet expectedSet = Sets.newHashSet(expectedItems); in assertCompletionContains() local 243 expectedSet.remove(element.toString()); in assertCompletionContains() 247 Assert.assertTrue(expectedSet.size() == 0); in assertCompletionContains()
|
/external/icu/icu4c/source/test/intltest/ |
D | itspoof.cpp | 629 UnicodeSet expectedSet(UnicodeString(test.fExpectedSet).unescape(), status); in testMixedNumbers() local 636 TEST_ASSERT_MSG((expectedSet.size() > 1) == mixedNumberFailure, msgBuf); in testMixedNumbers() 638 TEST_ASSERT_MSG(expectedSet == *actualSet, msgBuf); in testMixedNumbers()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRMismatchedSetException.m | 62 // expectedSet
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | CurrencyTest.java | 608 Set<String> expectedSet = new HashSet<String>(); in TestAvailableCurrencyCodes() local 610 expectedSet.addAll(Arrays.asList(expected)); in TestAvailableCurrencyCodes() 616 assertEquals(locale + " on " + timeString, expectedSet, actualSet); in TestAvailableCurrencyCodes()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | CurrencyTest.java | 607 Set<String> expectedSet = new HashSet<String>(); in TestAvailableCurrencyCodes() local 609 expectedSet.addAll(Arrays.asList(expected)); in TestAvailableCurrencyCodes() 615 assertEquals(locale + " on " + timeString, expectedSet, actualSet); in TestAvailableCurrencyCodes()
|