001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.collections.primitives.adapters;
018
019import java.util.ArrayList;
020import java.util.List;
021
022import junit.framework.Test;
023import junit.framework.TestSuite;
024
025import org.apache.commons.collections.primitives.ShortIterator;
026import org.apache.commons.collections.primitives.TestShortIterator;
027
028/**
029 * @version $Revision: 480451 $ $Date: 2006-11-29 02:45:08 -0500 (Wed, 29 Nov 2006) $
030 * @author Rodney Waldhoff
031 */
032public class TestIteratorShortIterator extends TestShortIterator {
033
034    // conventional
035    // ------------------------------------------------------------------------
036
037    public TestIteratorShortIterator(String testName) {
038        super(testName);
039    }
040
041    public static Test suite() {
042        return new TestSuite(TestIteratorShortIterator.class);
043    }
044
045    // collections testing framework
046    // ------------------------------------------------------------------------
047
048    public ShortIterator makeEmptyShortIterator() {
049        return IteratorShortIterator.wrap(makeEmptyList().iterator());
050    }
051    
052    public ShortIterator makeFullShortIterator() {
053        return IteratorShortIterator.wrap(makeFullList().iterator());
054    }
055
056    public List makeEmptyList() {
057        return new ArrayList();
058    }
059    
060    protected List makeFullList() {
061        List list = makeEmptyList();
062        short[] elts = getFullElements();
063        for(int i=0;i<elts.length;i++) {
064            list.add(new Short(elts[i]));
065        }
066        return list;
067    }
068    
069    public short[] getFullElements() {
070        return new short[] { (short)0, (short)1, (short)2, (short)3, (short)4, (short)5, (short)6, (short)7, (short)8, (short)9 };
071    }
072    
073    // tests
074    // ------------------------------------------------------------------------
075
076
077}