Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testBinarySearch (0.06 sec)

  1. android/guava-tests/test/com/google/common/collect/OrderingTest.java

            .addEqualityGroup(Ordering.natural())
            .testEquals();
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      public void testBinarySearch() {
        List<Integer> ints = Lists.newArrayList(0, 2, 3, 5, 7, 9);
        assertEquals(4, numberOrdering.binarySearch(ints, 7));
      }
    
      public void testSortedCopy() {
        List<@Nullable Integer> unsortedInts =
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

            .addEqualityGroup(Ordering.natural())
            .testEquals();
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      public void testBinarySearch() {
        List<Integer> ints = Lists.newArrayList(0, 2, 3, 5, 7, 9);
        assertEquals(4, numberOrdering.binarySearch(ints, 7));
      }
    
      public void testSortedCopy() {
        List<@Nullable Integer> unsortedInts =
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 42.8K bytes
    - Viewed (0)
Back to top