Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testRoundToDouble_minDoubleMinusOne (0.12 seconds)

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

        new RoundToDoubleTester(minDoubleAsBigDecimal)
            .setExpectation(-Double.MAX_VALUE, RoundingMode.values())
            .test();
      }
    
      public void testRoundToDouble_minDoubleMinusOne() {
        BigDecimal minDoubleAsBigDecimal = new BigDecimal(-Double.MAX_VALUE).subtract(BigDecimal.ONE);
        new RoundToDoubleTester(minDoubleAsBigDecimal)
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Nov 19 01:35:24 GMT 2025
    - 11K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/math/BigIntegerMathTest.java

        new RoundToDoubleTester(minDoubleAsBigInteger)
            .setExpectation(-Double.MAX_VALUE, RoundingMode.values())
            .test();
      }
    
      @J2ktIncompatible
      @GwtIncompatible
      public void testRoundToDouble_minDoubleMinusOne() {
        BigInteger minDoubleAsBigInteger =
            DoubleMath.roundToBigInteger(-Double.MAX_VALUE, UNNECESSARY).subtract(BigInteger.ONE);
        new RoundToDoubleTester(minDoubleAsBigInteger)
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Nov 19 01:35:24 GMT 2025
    - 27.1K bytes
    - Click Count (0)
Back to Top