Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testSkip_illegalArgument (0.22 sec)

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

        FluentIterable<String> tail = FluentIterable.from(list).skip(2);
        list.subList(0, 2).clear();
        assertThat(tail).isEmpty();
      }
    
      public void testSkip_illegalArgument() {
        try {
          FluentIterable.from(asList("a", "b", "c")).skip(-1);
          fail("Skipping negative number of elements should throw IllegalArgumentException.");
        } catch (IllegalArgumentException expected) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 18:35:19 GMT 2024
    - 31.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/FluentIterableTest.java

        FluentIterable<String> tail = FluentIterable.from(list).skip(2);
        list.subList(0, 2).clear();
        assertThat(tail).isEmpty();
      }
    
      public void testSkip_illegalArgument() {
        try {
          FluentIterable.from(asList("a", "b", "c")).skip(-1);
          fail("Skipping negative number of elements should throw IllegalArgumentException.");
        } catch (IllegalArgumentException expected) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jun 06 17:32:08 GMT 2023
    - 30.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/IterablesTest.java

        List<String> list = newArrayList("a", "b", "c");
        Iterable<String> tail = skip(list, 2);
        list.subList(0, 2).clear();
        assertTrue(Iterables.isEmpty(tail));
      }
    
      public void testSkip_illegalArgument() {
        List<String> list = newArrayList("a", "b", "c");
        try {
          skip(list, -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 47.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/IterablesTest.java

        List<String> list = newArrayList("a", "b", "c");
        Iterable<String> tail = skip(list, 2);
        list.subList(0, 2).clear();
        assertTrue(Iterables.isEmpty(tail));
      }
    
      public void testSkip_illegalArgument() {
        List<String> list = newArrayList("a", "b", "c");
        try {
          skip(list, -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 46K bytes
    - Viewed (0)
Back to top