1 17 package org.apache.excalibur.event.test; 18 19 import org.apache.excalibur.event.impl.DefaultQueue; 20 21 26 public final class DefaultQueuePerformanceTestCase extends AbstractQueueTestCase 27 { 28 public DefaultQueuePerformanceTestCase( String name ) 29 { 30 super( name ); 31 } 32 33 public void testMillionIterationOneElement() 34 throws Exception  35 { 36 this.performMillionIterationOneElement( new DefaultQueue() ); 37 } 38 39 public void testMillionIterationTenElements() 40 throws Exception  41 { 42 this.performMillionIterationTenElements( new DefaultQueue() ); 43 } 44 } 45 | Popular Tags |