Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testRoundNaNToLongAlwaysFails (0.21 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

          assertThrows(ArithmeticException.class, () -> DoubleMath.roundToLong(d, UNNECESSARY));
        }
      }
    
      @GwtIncompatible // DoubleMath.roundToLong(double, RoundingMode)
      public void testRoundNaNToLongAlwaysFails() {
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertThrows(ArithmeticException.class, () -> DoubleMath.roundToLong(Double.NaN, mode));
        }
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Oct 30 14:15:36 GMT 2025
    - 27.3K bytes
    - Click Count (0)
Back to Top