Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testMappingAnd_samePointTwice (0.25 seconds)

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

      public void testMappingAnd_nanY2() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.mapping(1.2, 3.4).and(5.6, Double.NaN));
      }
    
      public void testMappingAnd_samePointTwice() {
        double x = 1.2;
        double y = 3.4;
        assertThrows(
            IllegalArgumentException.class, () -> LinearTransformation.mapping(x, y).and(x, y));
      }
    
    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 testMappingAnd_nanY2() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.mapping(1.2, 3.4).and(5.6, Double.NaN));
      }
    
      public void testMappingAnd_samePointTwice() {
        double x = 1.2;
        double y = 3.4;
        assertThrows(
            IllegalArgumentException.class, () -> LinearTransformation.mapping(x, y).and(x, y));
      }
    
    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