1 25 26 package org.archive.queue; 27 28 import junit.framework.Test; 29 import junit.framework.TestSuite; 30 31 37 public class MemQueueTest extends QueueTestBase { 38 43 public MemQueueTest(final String testName) { 44 super(testName); 45 } 46 47 52 public static void main(String argv[]) { 53 junit.textui.TestRunner.run(suite()); 54 } 55 56 61 public static Test suite() { 62 return new TestSuite(MemQueueTest.class); 63 } 64 65 68 protected Queue<Object > makeQueue() { 69 return new MemQueue<Object >(); 70 } 71 72 } 74 75 | Popular Tags |