Searched refs:doTestToArrayImpl2 (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ObjectArraysTest.java | 135 doTestToArrayImpl2(Lists.<Integer>newArrayList(), new Integer[0], false); in testToArrayImpl2() 136 doTestToArrayImpl2(Lists.<Integer>newArrayList(), new Integer[1], true); in testToArrayImpl2() 138 doTestToArrayImpl2(Lists.newArrayList(1), new Integer[0], false); in testToArrayImpl2() 139 doTestToArrayImpl2(Lists.newArrayList(1), new Integer[1], true); in testToArrayImpl2() 140 doTestToArrayImpl2(Lists.newArrayList(1), new Integer[] {2, 3}, true); in testToArrayImpl2() 142 doTestToArrayImpl2(Lists.newArrayList(1, null, 3), new Integer[0], false); in testToArrayImpl2() 143 doTestToArrayImpl2(Lists.newArrayList(1, null, 3), new Integer[2], false); in testToArrayImpl2() 144 doTestToArrayImpl2(Lists.newArrayList(1, null, 3), new Integer[3], true); in testToArrayImpl2() 147 private void doTestToArrayImpl2(List<Integer> list, Integer[] array1, boolean expectModify) { in doTestToArrayImpl2() method in ObjectArraysTest
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | ObjectArraysTest.java | 135 doTestToArrayImpl2(Lists.<Integer>newArrayList(), new Integer[0], false); in testToArrayImpl2() 136 doTestToArrayImpl2(Lists.<Integer>newArrayList(), new Integer[1], true); in testToArrayImpl2() 138 doTestToArrayImpl2(Lists.newArrayList(1), new Integer[0], false); in testToArrayImpl2() 139 doTestToArrayImpl2(Lists.newArrayList(1), new Integer[1], true); in testToArrayImpl2() 140 doTestToArrayImpl2(Lists.newArrayList(1), new Integer[] {2, 3}, true); in testToArrayImpl2() 142 doTestToArrayImpl2(Lists.newArrayList(1, null, 3), new Integer[0], false); in testToArrayImpl2() 143 doTestToArrayImpl2(Lists.newArrayList(1, null, 3), new Integer[2], false); in testToArrayImpl2() 144 doTestToArrayImpl2(Lists.newArrayList(1, null, 3), new Integer[3], true); in testToArrayImpl2() 147 private void doTestToArrayImpl2(List<Integer> list, Integer[] array1, boolean expectModify) { in doTestToArrayImpl2() method in ObjectArraysTest
|