Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testConcatWithMoreGeneralType (0.36 sec)

  1. android/guava-tests/test/com/google/common/collect/ObjectArraysTest.java

        assertThat(result).asList().containsExactly("a", "b", "c", "d").inOrder();
      }
    
      @GwtIncompatible // ObjectArrays.concat(Object[], Object[], Class)
      public void testConcatWithMoreGeneralType() {
        CharSequence[] result = ObjectArrays.concat(new String[0], new String[0], CharSequence.class);
        assertEquals(CharSequence[].class, result.getClass());
      }
    
      public void testToArrayImpl1() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.7K bytes
    - Viewed (0)
Back to top