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.ShortIterator; 26 import org.apache.commons.collections.primitives.TestShortIterator; 27 28 32 public class TestIteratorShortIterator extends TestShortIterator { 33 34 37 public TestIteratorShortIterator(String testName) { 38 super(testName); 39 } 40 41 public static Test suite() { 42 return new TestSuite(TestIteratorShortIterator.class); 43 } 44 45 48 public ShortIterator makeEmptyShortIterator() { 49 return IteratorShortIterator.wrap(makeEmptyList().iterator()); 50 } 51 52 public ShortIterator makeFullShortIterator() { 53 return IteratorShortIterator.wrap(makeFullList().iterator()); 54 } 55 56 public List makeEmptyList() { 57 return new ArrayList (); 58 } 59 60 protected List makeFullList() { 61 List list = makeEmptyList(); 62 short[] elts = getFullElements(); 63 for(int i=0;i<elts.length;i++) { 64 list.add(new 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 |