| |
|
| java.lang.Object javatests.ListTest
ListTest | abstract public class ListTest (Code) | | author: updikca1 |
getArrayListTest | public static ListTest getArrayListTest(boolean makeReadOnly)(Code) | | |
indexOf | public void indexOf()(Code) | | Tests indexOf(Object o)
|
isReadOnly | public boolean isReadOnly()(Code) | | true if the list is read-only (like PyTuple) |
newInstance | public List newInstance(Collection c)(Code) | | Implementations must supply an empty list if the collection is null.
Parameters: c - Initial collection or null for empty. the List instance |
testAll | public void testAll()(Code) | | |
test_add | public void test_add()(Code) | | Tests add(Object o)
|
test_addAll | public void test_addAll()(Code) | | Tests addAll(Collection c)
|
test_addAll_index | public void test_addAll_index()(Code) | | Tests addAll(int index, Collection c)
|
test_add_index | public void test_add_index()(Code) | | Tests add(int index, Object element)
|
test_clear | public void test_clear()(Code) | | Tests clear()
|
test_contains | public void test_contains()(Code) | | Tests contains(Object o)
|
test_containsAll | public void test_containsAll()(Code) | | Tests containsAll(Collection c)
|
test_equals | public void test_equals()(Code) | | Tests equals(Object o)
|
test_get | public void test_get()(Code) | | Tests get(int index)
|
test_hashCode | public void test_hashCode()(Code) | | Tests hashCode()
|
test_isEmpty | public void test_isEmpty()(Code) | | Tests isEmpty()
|
test_iterator | public void test_iterator()(Code) | | Tests iterator()
|
test_lastIndexOf | public void test_lastIndexOf()(Code) | | Tests lastIndexOf(Object o)
|
test_listIterator | public void test_listIterator()(Code) | | |
test_remove | public void test_remove()(Code) | | Tests remove(Object o)
|
test_removeAll | public void test_removeAll()(Code) | | Tests removeAll(Collection c)
|
test_remove_index | public void test_remove_index()(Code) | | Tests remove(int index)
|
test_retainAll | public void test_retainAll()(Code) | | Tests retainAll(Collection c)
|
test_set | public void test_set()(Code) | | Tests set(int index, Object element)
|
test_size | public void test_size()(Code) | | Tests size()
|
test_subList | public void test_subList()(Code) | | Tests subList(int fromIndex, int toIndex)
|
test_toArray | public void test_toArray()(Code) | | Tests toArray()
|
test_toArray_typed | public void test_toArray_typed()(Code) | | Tests toArray(Object[] a)
|
verifyImutability | public static void verifyImutability(List l)(Code) | | |
|
|
|