KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > collections > iterators > TestArrayListIterator2


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

16 package org.apache.commons.collections.iterators;
17
18 import java.util.Iterator JavaDoc;
19
20 import junit.framework.Test;
21 import junit.framework.TestSuite;
22
23 /**
24  * Test the ArrayListIterator class with primitives.
25  *
26  * @version $Revision: 1.5 $ $Date: 2004/02/18 01:20:33 $
27  * @author Neil O'Toole
28  */

29 public class TestArrayListIterator2 extends TestArrayIterator2 {
30
31     public TestArrayListIterator2(String JavaDoc testName) {
32         super(testName);
33     }
34
35     public static Test suite() {
36         return new TestSuite(TestArrayListIterator2.class);
37     }
38
39     public Iterator JavaDoc makeEmptyIterator() {
40         return new ArrayListIterator(new int[0]);
41     }
42
43     public Iterator JavaDoc makeFullIterator() {
44         return new ArrayListIterator(testArray);
45     }
46
47     public ArrayIterator makeArrayIterator() {
48         return (ArrayIterator) makeEmptyIterator();
49     }
50
51     public ArrayIterator makeArrayIterator(Object JavaDoc array) {
52         return new ArrayListIterator(array);
53     }
54
55     public ArrayIterator makeArrayIterator(Object JavaDoc array, int index) {
56         return new ArrayListIterator(array, index);
57     }
58
59     public ArrayIterator makeArrayIterator(Object JavaDoc array, int start, int end) {
60         return new ArrayListIterator(array, start, end);
61     }
62
63 }
64
Popular Tags