1 17 package org.apache.commons.collections.primitives.adapters; 18 19 import java.util.ArrayList ; 20 import java.util.List ; 21 22 import junit.framework.Test; 23 import junit.framework.TestSuite; 24 25 import org.apache.commons.collections.primitives.DoubleListIterator; 26 import org.apache.commons.collections.primitives.TestDoubleListIterator; 27 28 32 public class TestListIteratorDoubleListIterator extends TestDoubleListIterator { 33 34 37 public TestListIteratorDoubleListIterator(String testName) { 38 super(testName); 39 } 40 41 public static Test suite() { 42 return new TestSuite(TestListIteratorDoubleListIterator.class); 43 } 44 45 48 public DoubleListIterator makeEmptyDoubleListIterator() { 49 return ListIteratorDoubleListIterator.wrap(makeEmptyList().listIterator()); 50 } 51 52 public DoubleListIterator makeFullDoubleListIterator() { 53 return ListIteratorDoubleListIterator.wrap(makeFullList().listIterator()); 54 } 55 56 public List makeEmptyList() { 57 return new ArrayList (); 58 } 59 60 protected List makeFullList() { 61 List list = makeEmptyList(); 62 double[] elts = getFullElements(); 63 for(int i=0;i<elts.length;i++) { 64 list.add(new Double (elts[i])); 65 } 66 return list; 67 } 68 69 public double[] getFullElements() { 70 return new double[] { (double)0, (double)1, (double)2, (double)3, (double)4, (double)5, (double)6, (double)7, (double)8, (double)9 }; 71 } 72 73 76 77 } 78 | Popular Tags |