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