svoid test_IContentsIndexedList(IContentsIndexedList l) { l.clear(); addAll(l, "a", "b", "a", null); assertEqualsVerbose(ll(0, 2), intArrayToList(l.indicesOf("a")); assertEqualsVerbose(ll(1), intArrayToList(l.indicesOf("b")); assertEqualsVerbose(ll(3), intArrayToList(l.indicesOf(null)); assertEqualsVerbose(ll(), intArrayToList(l.indicesOf("x")); l.clear(); }