HomeSort by relevance Sort by last modified time
    Searched refs:expectedMean (Results 1 - 4 of 4) sorted by null

  /external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
LongMathTest.java 161 * to the expectedMean.
163 private static void assertMean(long expectedMean, long x, long y) {
164 assertEquals("The expectedMean should be the same as computeMeanSafely",
165 expectedMean, computeMeanSafely(x, y));
174 long expectedMean = computeMeanSafely(x, y);
175 assertEquals(expectedMean, LongMath.mean(x, y));
177 expectedMean, LongMath.mean(y, x));
IntMathTest.java 317 * to the expectedMean.
319 private static void assertMean(int expectedMean, int x, int y) {
320 assertEquals("The expectedMean should be the same as computeMeanSafely",
321 expectedMean, computeMeanSafely(x, y));
330 int expectedMean = computeMeanSafely(x, y);
331 assertEquals(expectedMean, IntMath.mean(x, y));
333 expectedMean, IntMath.mean(y, x));
  /external/guava/guava-tests/test/com/google/common/math/
IntMathTest.java 552 * to the expectedMean.
554 private static void assertMean(int expectedMean, int x, int y) {
555 assertEquals("The expectedMean should be the same as computeMeanSafely",
556 expectedMean, computeMeanSafely(x, y));
565 int expectedMean = computeMeanSafely(x, y);
566 assertEquals(expectedMean, IntMath.mean(x, y));
568 expectedMean, IntMath.mean(y, x));
LongMathTest.java 653 * to the expectedMean.
655 private static void assertMean(long expectedMean, long x, long y) {
656 assertEquals("The expectedMean should be the same as computeMeanSafely",
657 expectedMean, computeMeanSafely(x, y));
666 long expectedMean = computeMeanSafely(x, y);
667 assertEquals(expectedMean, LongMath.mean(x, y));
669 expectedMean, LongMath.mean(y, x));

Completed in 4030 milliseconds