Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testToStringHelperWithArrays (0.58 seconds)

  1. android/guava-tests/test/com/google/common/base/ToStringHelperTest.java

                .add("field1", "Hello")
                .add("field2", CharBuffer.allocate(0))
                .toString();
        assertThat(toTest).isEqualTo("TestClass{field1=Hello}");
      }
    
      public void testToStringHelperWithArrays() {
        String[] strings = {"hello", "world"};
        int[] ints = {2, 42};
        Object[] objects = {"obj"};
        @Nullable String[] arrayWithNull = new @Nullable String[] {null};
        Object[] empty = {};
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 22K bytes
    - Click Count (0)
Back to Top