Home
last modified time | relevance | path

Searched refs:expectedSet (Results 1 – 8 of 8) sorted by relevance

/external/guava/android/guava-tests/test/com/google/common/collect/
DImmutableRangeSetTest.java503 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSet() local
505 assertEquals(expectedSet, asSet); in testAsSet()
506 assertThat(asSet).containsExactlyElementsIn(expectedSet).inOrder(); in testAsSet()
507 assertTrue(asSet.containsAll(expectedSet)); in testAsSet()
512 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetHeadSet() local
516 assertEquals(asSet.headSet(i, false), expectedSet.headSet(i, false)); in testAsSetHeadSet()
517 assertEquals(asSet.headSet(i, true), expectedSet.headSet(i, true)); in testAsSetHeadSet()
522 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetTailSet() local
526 assertEquals(asSet.tailSet(i, false), expectedSet.tailSet(i, false)); in testAsSetTailSet()
527 assertEquals(asSet.tailSet(i, true), expectedSet.tailSet(i, true)); in testAsSetTailSet()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableRangeSetTest.java504 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSet() local
506 assertEquals(expectedSet, asSet); in testAsSet()
507 assertThat(asSet).containsExactlyElementsIn(expectedSet).inOrder(); in testAsSet()
508 assertTrue(asSet.containsAll(expectedSet)); in testAsSet()
513 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetHeadSet() local
517 assertEquals(asSet.headSet(i, false), expectedSet.headSet(i, false)); in testAsSetHeadSet()
518 assertEquals(asSet.headSet(i, true), expectedSet.headSet(i, true)); in testAsSetHeadSet()
523 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetTailSet() local
527 assertEquals(asSet.tailSet(i, false), expectedSet.tailSet(i, false)); in testAsSetTailSet()
528 assertEquals(asSet.tailSet(i, true), expectedSet.tailSet(i, true)); in testAsSetTailSet()
[all …]
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliCodeFragmentFactoryTest.java239 HashSet expectedSet = Sets.newHashSet(expectedItems); in assertCompletionContains() local
243 expectedSet.remove(element.toString()); in assertCompletionContains()
247 Assert.assertTrue(expectedSet.size() == 0); in assertCompletionContains()
/external/s2-geometry-library-java/tests/com/google/common/geometry/
DS2CellIdTest.java244 Set<S2CellId> expectedSet = new HashSet<S2CellId>(expected); in testAllNeighbors() local
245 assertTrue(allSet.equals(expectedSet)); in testAllNeighbors()
/external/antlr/runtime/ObjC/Framework/
DMismatchedSetException.m62 // expectedSet
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp655 UnicodeSet expectedSet(UnicodeString(test.fExpectedSet).unescape(), status); in testMixedNumbers() local
662 TEST_ASSERT_MSG((expectedSet.size() > 1) == mixedNumberFailure, msgBuf); in testMixedNumbers()
664 TEST_ASSERT_MSG(expectedSet == *actualSet, msgBuf); in testMixedNumbers()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DCurrencyTest.java708 Set<String> expectedSet = new HashSet<>(); in TestAvailableCurrencyCodes() local
710 expectedSet.addAll(Arrays.asList(expected)); in TestAvailableCurrencyCodes()
716 assertEquals(locale + " on " + timeString, expectedSet, actualSet); in TestAvailableCurrencyCodes()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DCurrencyTest.java705 Set<String> expectedSet = new HashSet<>(); in TestAvailableCurrencyCodes() local
707 expectedSet.addAll(Arrays.asList(expected)); in TestAvailableCurrencyCodes()
713 assertEquals(locale + " on " + timeString, expectedSet, actualSet); in TestAvailableCurrencyCodes()