1 8 package org.apache.avalon.excalibur.event.test; 9 10 import junit.framework.TestCase; 11 import org.apache.avalon.excalibur.event.FixedSizeQueue; 12 13 18 public final class FixedSizeQueueTestCase extends AbstractQueueTestCase 19 { 20 public FixedSizeQueueTestCase( String name ) 21 { 22 super( name ); 23 } 24 25 public void testFixedSizeQueue() 26 throws Exception  27 { 28 this.performQueue( new FixedSizeQueue( 32 ) ); 29 } 30 } | Popular Tags |