Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testGetLast_withDefault_singleton (0.1 sec)

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

      }
    
      public void testGetLast_sortedSet() {
        SortedSet<String> sortedSet = ImmutableSortedSet.of("b", "c", "a");
        assertEquals("c", Iterables.getLast(sortedSet));
      }
    
      public void testGetLast_withDefault_singleton() {
        Iterable<String> iterable = singletonList("foo");
        assertEquals("foo", Iterables.getLast(iterable, "bar"));
      }
    
      public void testGetLast_withDefault_empty() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/IteratorsTest.java

      }
    
      public void testGetLast_exception() {
        List<String> list = new ArrayList<>();
        assertThrows(NoSuchElementException.class, () -> getLast(list.iterator()));
      }
    
      public void testGetLast_withDefault_singleton() {
        Iterator<String> iterator = singletonList("foo").iterator();
        assertEquals("foo", Iterators.getLast(iterator, "bar"));
      }
    
      public void testGetLast_withDefault_empty() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 56.7K bytes
    - Viewed (0)
Back to top