Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testVertical_nanX (0.2 seconds)

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

      }
    
      public void testVertical_infiniteX() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.vertical(Double.NEGATIVE_INFINITY));
      }
    
      public void testVertical_nanX() {
        assertThrows(IllegalArgumentException.class, () -> LinearTransformation.vertical(Double.NaN));
      }
    
      public void testHorizontal_regular() {
        double y = 1.2;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/math/LinearTransformationTest.java

      }
    
      public void testVertical_infiniteX() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.vertical(Double.NEGATIVE_INFINITY));
      }
    
      public void testVertical_nanX() {
        assertThrows(IllegalArgumentException.class, () -> LinearTransformation.vertical(Double.NaN));
      }
    
      public void testHorizontal_regular() {
        double y = 1.2;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 7.2K bytes
    - Click Count (0)
Back to Top