Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sign (0.12 sec)

  1. guava-tests/test/com/google/common/primitives/IntsTest.java

              .isTrue();
        }
      }
    
      public void testCompare() {
        for (int x : VALUES) {
          for (int y : VALUES) {
            // note: spec requires only that the sign is the same
            assertWithMessage(x + ", " + y)
                .that(Ints.compare(x, y))
                .isEqualTo(Integer.valueOf(x).compareTo(y));
          }
        }
      }
    
      public void testContains() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/IntsTest.java

              .isTrue();
        }
      }
    
      public void testCompare() {
        for (int x : VALUES) {
          for (int y : VALUES) {
            // note: spec requires only that the sign is the same
            assertWithMessage(x + ", " + y)
                .that(Ints.compare(x, y))
                .isEqualTo(Integer.valueOf(x).compareTo(y));
          }
        }
      }
    
      public void testContains() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 28.4K bytes
    - Viewed (0)
Back to top