Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for testcontainers (1.14 sec)

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

            // note: spec requires only that the sign is the same
            assertWithMessage(x + ", " + y).that(Floats.compare(x, y)).isEqualTo(Float.compare(x, y));
          }
        }
      }
    
      public void testContains() {
        assertThat(Floats.contains(EMPTY, 1.0f)).isFalse();
        assertThat(Floats.contains(ARRAY1, 2.0f)).isFalse();
        assertThat(Floats.contains(ARRAY234, 1.0f)).isFalse();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/IntsTest.java

            // note: spec requires only that the sign is the same
            assertWithMessage(x + ", " + y).that(Ints.compare(x, y)).isEqualTo(Integer.compare(x, y));
          }
        }
      }
    
      public void testContains() {
        assertThat(Ints.contains(EMPTY, (int) 1)).isFalse();
        assertThat(Ints.contains(ARRAY1, (int) 2)).isFalse();
        assertThat(Ints.contains(ARRAY234, (int) 1)).isFalse();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/FloatsTest.java

            // note: spec requires only that the sign is the same
            assertWithMessage(x + ", " + y).that(Floats.compare(x, y)).isEqualTo(Float.compare(x, y));
          }
        }
      }
    
      public void testContains() {
        assertThat(Floats.contains(EMPTY, 1.0f)).isFalse();
        assertThat(Floats.contains(ARRAY1, 2.0f)).isFalse();
        assertThat(Floats.contains(ARRAY234, 1.0f)).isFalse();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
Back to top