Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testToStringHelperWithArrays (0.35 sec)

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

                .add("field1", "Hello")
                .add("field2", CharBuffer.allocate(0))
                .toString();
        assertEquals("TestClass{field1=Hello}", toTest);
      }
    
      public void testToStringHelperWithArrays() {
        String[] strings = {"hello", "world"};
        int[] ints = {2, 42};
        Object[] objects = {"obj"};
        @Nullable String[] arrayWithNull = new @Nullable String[] {null};
        Object[] empty = {};
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 21.4K bytes
    - Viewed (0)
Back to top