HomeSort by relevance Sort by last modified time
    Searched full:emptysublist (Results 1 - 1 of 1) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractListTest.java 184 List emptySubList = al.subList(0, 0);
187 emptySubList.get(0);
188 fail("emptySubList.get(0) should throw IndexOutOfBoundsException");
194 emptySubList.set(0, "one");
195 fail("emptySubList.set(0,Object) should throw IndexOutOfBoundsException");
201 emptySubList.remove(0);
202 fail("emptySubList.remove(0) should throw IndexOutOfBoundsException");

Completed in 56 milliseconds