Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testModZeroModulusFails (0.11 sec)

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

          for (int m : NEGATIVE_INTEGER_CANDIDATES) {
            assertThrows(ArithmeticException.class, () -> IntMath.mod(x, m));
          }
        }
      }
    
      public void testModZeroModulusFails() {
        for (int x : ALL_INTEGER_CANDIDATES) {
          assertThrows(ArithmeticException.class, () -> IntMath.mod(x, 0));
        }
      }
    
      public void testGCD() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/IntMathTest.java

          for (int m : NEGATIVE_INTEGER_CANDIDATES) {
            assertThrows(ArithmeticException.class, () -> IntMath.mod(x, m));
          }
        }
      }
    
      public void testModZeroModulusFails() {
        for (int x : ALL_INTEGER_CANDIDATES) {
          assertThrows(ArithmeticException.class, () -> IntMath.mod(x, 0));
        }
      }
    
      public void testGCD() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top