/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableRangeSetTest.java | 508 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSet() local 510 assertEquals(expectedSet, asSet); in testAsSet() 511 assertThat(asSet).containsExactlyElementsIn(expectedSet).inOrder(); in testAsSet() 512 assertTrue(asSet.containsAll(expectedSet)); in testAsSet() 517 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetHeadSet() local 521 assertEquals(asSet.headSet(i, false), expectedSet.headSet(i, false)); in testAsSetHeadSet() 522 assertEquals(asSet.headSet(i, true), expectedSet.headSet(i, true)); in testAsSetHeadSet() 527 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetTailSet() local 531 assertEquals(asSet.tailSet(i, false), expectedSet.tailSet(i, false)); in testAsSetTailSet() 532 assertEquals(asSet.tailSet(i, true), expectedSet.tailSet(i, true)); in testAsSetTailSet() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | ImmutableRangeSetTest.java | 507 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSet() local 509 assertEquals(expectedSet, asSet); in testAsSet() 510 assertThat(asSet).containsExactlyElementsIn(expectedSet).inOrder(); in testAsSet() 511 assertTrue(asSet.containsAll(expectedSet)); in testAsSet() 516 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetHeadSet() local 520 assertEquals(asSet.headSet(i, false), expectedSet.headSet(i, false)); in testAsSetHeadSet() 521 assertEquals(asSet.headSet(i, true), expectedSet.headSet(i, true)); in testAsSetHeadSet() 526 ImmutableSortedSet<Integer> expectedSet = ImmutableSortedSet.of(2, 3, 4, 8, 9, 16, 17); in testAsSetTailSet() local 530 assertEquals(asSet.tailSet(i, false), expectedSet.tailSet(i, false)); in testAsSetTailSet() 531 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/s2-geometry-library-java/tests/com/google/common/geometry/ |
D | S2CellIdTest.java | 244 Set<S2CellId> expectedSet = new HashSet<S2CellId>(expected); in testAllNeighbors() local 245 assertTrue(allSet.equals(expectedSet)); in testAllNeighbors()
|
/external/antlr/runtime/ObjC/Framework/ |
D | MismatchedSetException.m | 62 // expectedSet
|
/external/icu/icu4c/source/test/intltest/ |
D | itspoof.cpp | 655 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/cronet/third_party/icu/source/test/intltest/ |
D | itspoof.cpp | 655 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/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | CurrencyTest.java | 720 Set<String> expectedSet = new HashSet<>(); in TestAvailableCurrencyCodes() local 722 expectedSet.addAll(Arrays.asList(expected)); in TestAvailableCurrencyCodes() 728 assertEquals(locale + " on " + timeString, expectedSet, actualSet); in TestAvailableCurrencyCodes()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | CurrencyTest.java | 723 Set<String> expectedSet = new HashSet<>(); in TestAvailableCurrencyCodes() local 725 expectedSet.addAll(Arrays.asList(expected)); in TestAvailableCurrencyCodes() 731 assertEquals(locale + " on " + timeString, expectedSet, actualSet); in TestAvailableCurrencyCodes()
|