Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testFrom_alreadyFluentIterable (0.2 seconds)

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

      }
    
      @SuppressWarnings({
        "deprecation", // test of deprecated method
        // We need to test that from(FluentIterable) really is just a null check.
        "InlineMeInliner",
      })
      public void testFrom_alreadyFluentIterable() {
        FluentIterable<Integer> iterable = FluentIterable.from(asList(1));
        assertThat(FluentIterable.from(iterable)).isSameInstanceAs(iterable);
      }
    
      public void testOf() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 31.2K bytes
    - Click Count (0)
Back to Top