Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for testJoin (0.21 sec)

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

                    (int) 0xff1a618bL,
                    (int) 0L))
            .isEqualTo((int) 0xff1a618bL);
      }
    
      public void testMin_noArgs() {
        try {
          UnsignedInts.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(UnsignedInts.min(LEAST)).isEqualTo(LEAST);
        assertThat(UnsignedInts.min(GREATEST)).isEqualTo(GREATEST);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/FluentIterableTest.java

        assertThat(FluentIterable.from(iterable).copyInto(list))
            .containsExactly(1, 2, 3, 9, 8, 7)
            .inOrder();
      }
    
      public void testJoin() {
        assertEquals("2,1,3,4", fluent(2, 1, 3, 4).join(Joiner.on(",")));
      }
    
      public void testJoin_empty() {
        assertEquals("", fluent().join(Joiner.on(",")));
      }
    
      public void testGet() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 18:35:19 GMT 2024
    - 31.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/FluentIterableTest.java

        assertThat(FluentIterable.from(iterable).copyInto(list))
            .containsExactly(1, 2, 3, 9, 8, 7)
            .inOrder();
      }
    
      public void testJoin() {
        assertEquals("2,1,3,4", fluent(2, 1, 3, 4).join(Joiner.on(",")));
      }
    
      public void testJoin_empty() {
        assertEquals("", fluent().join(Joiner.on(",")));
      }
    
      public void testGet() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 06 17:32:08 GMT 2023
    - 30.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/ShortsTest.java

            .isEqualTo((short) 9);
      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Shorts.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Shorts.min(LEAST)).isEqualTo(LEAST);
        assertThat(Shorts.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/BooleansTest.java

          // notice that this should even fail when no growth was needed
          Booleans.ensureCapacity(ARRAY_FALSE, 1, -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testJoin() {
        assertThat(Booleans.join(",", EMPTY)).isEmpty();
        assertThat(Booleans.join(",", ARRAY_FALSE)).isEqualTo("false");
        assertThat(Booleans.join(",", false, true)).isEqualTo("false,true");
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 15:43:29 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

          // notice that this should even fail when no growth was needed
          Booleans.ensureCapacity(ARRAY_FALSE, 1, -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testJoin() {
        assertThat(Booleans.join(",", EMPTY)).isEmpty();
        assertThat(Booleans.join(",", ARRAY_FALSE)).isEqualTo("false");
        assertThat(Booleans.join(",", false, true)).isEqualTo("false,true");
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 15:43:29 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

            .isEqualTo((short) 9);
      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Shorts.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Shorts.min(LEAST)).isEqualTo(LEAST);
        assertThat(Shorts.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/IntsTest.java

            .isEqualTo((int) 9);
      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Ints.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Ints.min(LEAST)).isEqualTo(LEAST);
        assertThat(Ints.min(GREATEST)).isEqualTo(GREATEST);
    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)
  9. guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(Float.isNaN(Floats.max(VALUES))).isTrue();
      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Floats.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Floats.min(LEAST)).isEqualTo(LEAST);
        assertThat(Floats.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/IntsTest.java

            .isEqualTo((int) 9);
      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Ints.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Ints.min(LEAST)).isEqualTo(LEAST);
        assertThat(Ints.min(GREATEST)).isEqualTo(GREATEST);
    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