KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > collections > primitives > adapters > TestDoubleListList


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.commons.collections.primitives.adapters;
18
19 import java.io.Serializable JavaDoc;
20 import java.util.List JavaDoc;
21
22 import junit.framework.Test;
23 import junit.framework.TestSuite;
24
25 import org.apache.commons.collections.BulkTest;
26 import org.apache.commons.collections.primitives.ArrayDoubleList;
27 import org.apache.commons.collections.primitives.RandomAccessDoubleList;
28
29 /**
30  * @version $Revision: 480451 $ $Date: 2006-11-28 23:45:08 -0800 (Tue, 28 Nov 2006) $
31  * @author Rodney Waldhoff
32  */

33 public class TestDoubleListList extends BaseTestList {
34
35     // conventional
36
// ------------------------------------------------------------------------
37

38     public TestDoubleListList(String JavaDoc testName) {
39         super(testName);
40     }
41
42     public static Test suite() {
43         TestSuite suite = BulkTest.makeSuite(TestDoubleListList.class);
44         return suite;
45     }
46
47     // collections testing framework
48
// ------------------------------------------------------------------------
49

50     public List JavaDoc makeEmptyList() {
51         return new DoubleListList(new ArrayDoubleList());
52     }
53         
54     public Object JavaDoc[] getFullElements() {
55         Double JavaDoc[] elts = new Double JavaDoc[10];
56         for(int i=0;i<elts.length;i++) {
57             elts[i] = new Double JavaDoc((double)i);
58         }
59         return elts;
60     }
61
62     public Object JavaDoc[] getOtherElements() {
63         Double JavaDoc[] elts = new Double JavaDoc[10];
64         for(int i=0;i<elts.length;i++) {
65             elts[i] = new Double JavaDoc((double)(10 + i));
66         }
67         return elts;
68     }
69
70     // tests
71
// ------------------------------------------------------------------------
72

73     /** @TODO need to add serialized form to cvs */
74
75     public void testCanonicalEmptyCollectionExists() {
76         // XXX FIX ME XXX
77
// need to add a serialized form to cvs
78
}
79
80     public void testCanonicalFullCollectionExists() {
81         // XXX FIX ME XXX
82
// need to add a serialized form to cvs
83
}
84
85     public void testEmptyListCompatibility() {
86         // XXX FIX ME XXX
87
// need to add a serialized form to cvs
88
}
89
90     public void testFullListCompatibility() {
91         // XXX FIX ME XXX
92
// need to add a serialized form to cvs
93
}
94
95     public void testWrapNull() {
96         assertNull(DoubleListList.wrap(null));
97     }
98     
99     public void testWrapSerializable() {
100         List JavaDoc list = DoubleListList.wrap(new ArrayDoubleList());
101         assertNotNull(list);
102         assertTrue(list instanceof Serializable JavaDoc);
103     }
104     
105     public void testWrapNonSerializable() {
106         List JavaDoc list = DoubleListList.wrap(new RandomAccessDoubleList() {
107             public double get(int i) { throw new IndexOutOfBoundsException JavaDoc(); }
108             public int size() { return 0; }
109         });
110         assertNotNull(list);
111         assertTrue(!(list instanceof Serializable JavaDoc));
112     }
113 }
114
Popular Tags