Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testAsListIterator (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java

      }
    
      public void testOf7() {
        assertThat(ImmutableLongArray.of(0, 1, 3, 6, 10, 15, 21).asList())
            .containsExactly(0L, 1L, 3L, 6L, 10L, 15L, 21L)
            .inOrder();
      }
    
      public void testAsListIterator() {
        PrimitiveIterator.OfLong longIterator =
            (PrimitiveIterator.OfLong) ImmutableLongArray.of(1, 2, 3).asList().iterator();
        assertThat(longIterator.nextLong()).isEqualTo(1);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 12 14:49:24 GMT 2025
    - 20.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java

      }
    
      public void testOf7() {
        assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10, 15, 21).asList())
            .containsExactly(0, 1, 3, 6, 10, 15, 21)
            .inOrder();
      }
    
      public void testAsListIterator() {
        PrimitiveIterator.OfInt intIterator =
            (PrimitiveIterator.OfInt) ImmutableIntArray.of(1, 2, 3).asList().iterator();
        assertThat(intIterator.nextInt()).isEqualTo(1);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 12 14:49:24 GMT 2025
    - 20.6K bytes
    - Click Count (0)
Back to Top