Js stdlib: fixed the ArrayList implementation and added tests for indexOf, addAll, remove(by ref), removeAll, retainAll, containsAll.

This commit is contained in:
Zalim Bashorov
2014-01-28 21:54:21 +04:00
parent 0cb016b187
commit 95084f9e0e
7 changed files with 195 additions and 25 deletions
@@ -76,4 +76,20 @@ public final class ArrayListTest extends JavaClassesTest {
public void testConstructWithSideEffectParam() throws Exception {
fooBoxTest();
}
public void testIndexOf() throws Exception {
checkFooBoxIsOk();
}
public void testContainsAll() throws Exception {
checkFooBoxIsOk();
}
public void testRemoveAll() throws Exception {
checkFooBoxIsOk();
}
public void testRetainAll() throws Exception {
checkFooBoxIsOk();
}
}