Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for suggested (0.17 sec)

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

        String leading = ",a,b,c";
        Iterable<String> letters = Splitter.onPattern(",").split(leading);
        assertThat(letters).containsExactly("", "a", "b", "c").inOrder();
      }
    
      // TODO(kevinb): the name of this method suggests it might not actually be testing what it
      // intends to be testing?
      @GwtIncompatible // Splitter.onPattern
      public void testPatternSplitWithMultipleLetters() {
        Iterable<String> testPatterningMotto =
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 29.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/SplitterTest.java

        String leading = ",a,b,c";
        Iterable<String> letters = Splitter.onPattern(",").split(leading);
        assertThat(letters).containsExactly("", "a", "b", "c").inOrder();
      }
    
      // TODO(kevinb): the name of this method suggests it might not actually be testing what it
      // intends to be testing?
      @GwtIncompatible // Splitter.onPattern
      public void testPatternSplitWithMultipleLetters() {
        Iterable<String> testPatterningMotto =
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 29.5K bytes
    - Viewed (0)
Back to top