OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:emptysublist
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/test/java/tests/api/java/util/
AbstractListTest.java
176
List
emptySubList
= al.subList(0, 0);
179
emptySubList
.get(0);
180
fail("
emptySubList
.get(0) should throw IndexOutOfBoundsException");
186
emptySubList
.set(0, "one");
187
fail("
emptySubList
.set(0,Object) should throw IndexOutOfBoundsException");
193
emptySubList
.remove(0);
194
fail("
emptySubList
.remove(0) should throw IndexOutOfBoundsException");
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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 72 milliseconds