/* *************************************************************************************** * Copyright (C) 2006 EsperTech, Inc. All rights reserved. * * http://www.espertech.com/esper * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * *************************************************************************************** */ package com.espertech.esper.collection; import com.espertech.esper.client.EventBean; import com.espertech.esper.supportunit.event.SupportEventBeanFactory; import junit.framework.TestCase; import java.util.NoSuchElementException; public class TestSingleEventIterator extends TestCase { private SingleEventIterator iterator; private EventBean eventBean; public void setUp() { eventBean = SupportEventBeanFactory.createObject("a"); iterator = new SingleEventIterator(eventBean); } public void testNext() { assertEquals(eventBean, iterator.next()); try { iterator.next(); TestCase.fail(); } catch (NoSuchElementException ex) { // Expected exception } } public void testHasNext() { assertTrue(iterator.hasNext()); iterator.next(); assertFalse(iterator.hasNext()); } public void testRemove() { try { iterator.remove(); assertTrue(false); } catch (UnsupportedOperationException ex) { // Expected exception } } }