Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for containsExactlyEntriesIn (0.07 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesTest.java

            }
            assertThat(percentiles().indexes(index1, index2).compute(PSEUDORANDOM_DATASET))
                .comparingValuesUsing(QUANTILE_CORRESPONDENCE)
                .containsExactlyEntriesIn(expectedBuilder.buildOrThrow());
          }
        }
      }
    
      public void testPercentiles_indexes_varargsAll_compute_doubleCollection() {
        ArrayList<Integer> indexes = new ArrayList<>();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/QuantilesTest.java

            }
            assertThat(percentiles().indexes(index1, index2).compute(PSEUDORANDOM_DATASET))
                .comparingValuesUsing(QUANTILE_CORRESPONDENCE)
                .containsExactlyEntriesIn(expectedBuilder.buildOrThrow());
          }
        }
      }
    
      public void testPercentiles_indexes_varargsAll_compute_doubleCollection() {
        ArrayList<Integer> indexes = new ArrayList<>();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

          builder.put(key, value);
          expected.put(key, value);
        }
        ImmutableMap<Integer, String> map = builder.buildKeepingLast();
        assertThat(map).hasSize(500);
        assertThat(map).containsExactlyEntriesIn(expected).inOrder();
      }
    
      // This method tests the int case.
      public void testBuildKeepingLast_bigTable() {
        Builder<Integer, String> builder = ImmutableMap.builder();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java

        for (int i = 0; i < alternatingKeysAndValues.length; i += 2) {
          expected.put(alternatingKeysAndValues[i], alternatingKeysAndValues[i + 1]);
        }
        assertThat(map).containsExactlyEntriesIn(expected).inOrder();
      }
    
      /** No-op test so that the class has at least one method, making Maven's test runner happy. */
      public void testNoop() {}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

        for (int i = 0; i < alternatingKeysAndValues.length; i += 2) {
          expected.put(alternatingKeysAndValues[i], alternatingKeysAndValues[i + 1]);
        }
        assertThat(map).containsExactlyEntriesIn(expected).inOrder();
      }
    
      private static class IntHolder implements Serializable {
        private int value;
    
        IntHolder(int value) {
          this.value = value;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.6K bytes
    - Viewed (0)
Back to top