1 17 package org.apache.commons.collections.primitives; 18 19 import junit.framework.Test; 20 import junit.framework.TestSuite; 21 22 import org.apache.commons.collections.BulkTest; 23 24 28 public class TestArrayLongList extends TestLongList { 29 30 33 public TestArrayLongList(String testName) { 34 super(testName); 35 } 36 37 public static Test suite() { 38 TestSuite suite = BulkTest.makeSuite(TestArrayLongList.class); 39 return suite; 40 } 41 42 45 protected LongList makeEmptyLongList() { 46 return new ArrayLongList(); 47 } 48 49 public String [] ignoredTests() { 50 return new String [] { 52 "TestArrayLongList.bulkTestSubList.testFullListSerialization", 53 "TestArrayLongList.bulkTestSubList.testEmptyListSerialization", 54 "TestArrayLongList.bulkTestSubList.testCanonicalEmptyCollectionExists", 55 "TestArrayLongList.bulkTestSubList.testCanonicalFullCollectionExists", 56 "TestArrayLongList.bulkTestSubList.testEmptyListCompatibility", 57 "TestArrayLongList.bulkTestSubList.testFullListCompatibility", 58 "TestArrayLongList.bulkTestSubList.testSerializeDeserializeThenCompare", 59 "TestArrayLongList.bulkTestSubList.testSimpleSerialization" 60 }; 61 } 62 63 66 67 public void testCanonicalEmptyCollectionExists() { 68 } 71 72 public void testCanonicalFullCollectionExists() { 73 } 76 77 public void testEmptyListCompatibility() { 78 } 81 82 public void testFullListCompatibility() { 83 } 86 87 public void testAddGetLargeValues() { 88 LongList list = new ArrayLongList(); 89 for (int i = 0; i < 1000; i++) { 90 long value = ((long) (Integer.MAX_VALUE)); 91 value += i; 92 list.add(value); 93 } 94 for (int i = 0; i < 1000; i++) { 95 long value = ((long) (Integer.MAX_VALUE)); 96 value += i; 97 assertEquals(value, list.get(i)); 98 } 99 } 100 101 public void testZeroInitialCapacityIsValid() { 102 assertNotNull(new ArrayLongList(0)); 103 } 104 105 public void testNegativeInitialCapacityIsInvalid() { 106 try { 107 new ArrayLongList(-1); 108 fail("Expected IllegalArgumentException"); 109 } catch(IllegalArgumentException e) { 110 } 112 } 113 114 public void testCopyConstructor() { 115 ArrayLongList expected = new ArrayLongList(); 116 for(int i=0;i<10;i++) { 117 expected.add((long)i); 118 } 119 ArrayLongList list = new ArrayLongList(expected); 120 assertEquals(10,list.size()); 121 assertEquals(expected,list); 122 } 123 124 public void testCopyConstructorWithNull() { 125 try { 126 new ArrayLongList((LongCollection) null); 127 fail("Expected NullPointerException"); 128 } catch(NullPointerException e) { 129 } 131 } 132 133 public void testArrayConstructor() { 134 ArrayLongList expected = new ArrayLongList(); 135 for (int i = 0; i < 10; i++) { 136 expected.add((long) i); 137 } 138 ArrayLongList list = new ArrayLongList(expected.toArray()); 139 assertEquals(10, list.size()); 140 assertEquals(expected, list); 141 } 142 143 public void testArrayConstructorWithNull() { 144 try { 145 new ArrayLongList((long[]) null); 146 fail("Expected NullPointerException"); 147 } catch (NullPointerException e) { 148 } 150 } 151 152 153 public void testTrimToSize() { 154 ArrayLongList list = new ArrayLongList(); 155 for(int j=0;j<3;j++) { 156 assertTrue(list.isEmpty()); 157 158 list.trimToSize(); 159 160 assertTrue(list.isEmpty()); 161 162 for(int i=0;i<10;i++) { 163 list.add((long)i); 164 } 165 166 for(int i=0;i<10;i++) { 167 assertEquals((long)i,list.get(i)); 168 } 169 170 list.trimToSize(); 171 172 for(int i=0;i<10;i++) { 173 assertEquals((long)i,list.get(i)); 174 } 175 176 for(int i=0;i<10;i+=2) { 177 list.removeElement((long)i); 178 } 179 180 for(int i=0;i<5;i++) { 181 assertEquals((long)(2*i)+1,list.get(i)); 182 } 183 184 list.trimToSize(); 185 186 for(int i=0;i<5;i++) { 187 assertEquals((long)(2*i)+1,list.get(i)); 188 } 189 190 list.trimToSize(); 191 192 for(int i=0;i<5;i++) { 193 assertEquals((long)(2*i)+1,list.get(i)); 194 } 195 196 list.clear(); 197 } 198 } 199 200 } 201 | Popular Tags |