Package org.jboss.cache.misc

Source Code of org.jboss.cache.misc.CopyOnWriteArrayTest

package org.jboss.cache.misc;

import EDU.oswego.cs.dl.util.concurrent.CopyOnWriteArrayList;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

import java.util.Iterator;
import java.util.LinkedList;

/**
* @author Bela Ban
* @version $Id: CopyOnWriteArrayTest.java 201 2005-07-08 05:58:12Z msurtani $
*/
public class CopyOnWriteArrayTest extends TestCase {
   LinkedList l;
   CopyOnWriteArrayList list;
   Exception thread_ex=null;

   protected void setUp() throws Exception {
      super.setUp();
      l=new LinkedList();
      l.add("one");
      l.add("two");
      l.add("three");
      list=new CopyOnWriteArrayList(l);
      thread_ex=null;
   }

   protected void tearDown() throws Exception {
      super.tearDown();
      if(thread_ex != null)
         throw thread_ex;
   }


   public void testInsertionandIteration() {
      Object el;
      System.out.println("list = " + list);

      Iterator it=list.iterator();
      System.out.println(it.next());

      list.add("four");

      int count=0;
      while(it.hasNext()) {
         el=it.next();
         System.out.println(el);
         ++count;
      }
      assertEquals(2, count);

      System.out.println("list: " + list);
      assertEquals(4, list.size());
   }





   public static Test suite() {
      return new TestSuite(CopyOnWriteArrayTest.class);
   }

   public static void main(String[] args) {
      junit.textui.TestRunner.run(suite());
   }

}
TOP

Related Classes of org.jboss.cache.misc.CopyOnWriteArrayTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.