Added a test for IteratorEnumeration

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Bourg 2013-11-20 07:51:32 +00:00
parent 6df343df26
commit 6cf4249650
2 changed files with 52 additions and 2 deletions

View File

@ -36,7 +36,6 @@ public class IteratorEnumeration<E> implements Enumeration<E> {
* until {@link #setIterator(Iterator) setIterator} is invoked.
*/
public IteratorEnumeration() {
super();
}
/**
@ -46,7 +45,6 @@ public class IteratorEnumeration<E> implements Enumeration<E> {
* @param iterator the iterator to use
*/
public IteratorEnumeration(final Iterator<? extends E> iterator) {
super();
this.iterator = iterator;
}

View File

@ -0,0 +1,52 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.iterators;
import java.util.Arrays;
import java.util.Iterator;
import java.util.NoSuchElementException;
import junit.framework.TestCase;
/**
* Tests the IteratorEnumeration.
*
* @version $Id$
*/
public class IteratorEnumerationTest extends TestCase {
public void testEnumeration() {
Iterator<String> iterator = Arrays.asList("a", "b", "c").iterator();
IteratorEnumeration<String> enumeration = new IteratorEnumeration<String>(iterator);
assertEquals(iterator, enumeration.getIterator());
assertTrue(enumeration.hasMoreElements());
assertEquals("a", enumeration.nextElement());
assertEquals("b", enumeration.nextElement());
assertEquals("c", enumeration.nextElement());
assertFalse(enumeration.hasMoreElements());
try {
enumeration.nextElement();
fail("NoSuchElementException expected");
} catch (NoSuchElementException e) {
// expected
}
}
}