Searched refs:assertMean (Results 1 - 4 of 4) sorted by relevance

/external/guava/guava-tests/test/com/google/common/math/
H A DIntMathTest.java519 assertMean(2, 1, 3);
521 assertMean(-2, -3, -1);
522 assertMean(0, -1, 1);
523 assertMean(1, -1, 3);
524 assertMean((1 << 30) - 1, -1, Integer.MAX_VALUE);
527 assertMean(2, 1, 4);
528 assertMean(-3, -4, -1);
529 assertMean(0, -1, 2);
530 assertMean(0, Integer.MIN_VALUE + 2, Integer.MAX_VALUE);
531 assertMean(
554 private static void assertMean(int expectedMean, int x, int y) { method in class:IntMathTest
564 private static void assertMean(int x, int y) { method in class:IntMathTest
[all...]
H A DLongMathTest.java620 assertMean(2, 1, 3);
622 assertMean(-2, -3, -1);
623 assertMean(0, -1, 1);
624 assertMean(1, -1, 3);
625 assertMean((1L << 62) - 1, -1, Long.MAX_VALUE);
628 assertMean(2, 1, 4);
629 assertMean(-3, -4, -1);
630 assertMean(0, -1, 2);
631 assertMean(0, Long.MIN_VALUE + 2, Long.MAX_VALUE);
632 assertMean(
655 private static void assertMean(long expectedMean, long x, long y) { method in class:LongMathTest
665 private static void assertMean(long x, long y) { method in class:LongMathTest
[all...]
/external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
H A DLongMathTest.java163 private static void assertMean(long expectedMean, long x, long y) { method in class:LongMathTest
166 assertMean(x, y);
173 private static void assertMean(long x, long y) { method in class:LongMathTest
H A DIntMathTest.java319 private static void assertMean(int expectedMean, int x, int y) { method in class:IntMathTest
322 assertMean(x, y);
329 private static void assertMean(int x, int y) { method in class:IntMathTest

Completed in 130 milliseconds