I just wrote a WeakArrayList<E>
class, which implements List<E>
, with WeakReference<E>
s to the elements, and appropriate synchronizations.
I have every reason to believe that a through test suite will be much larger and complicated then my class is.
Is there a (free) test suite for List
, ArrayList
and Map
?
Thanks!