1 22 package org.jboss.test.jbossmq.stress; 23 24 import junit.framework.TestSuite; 25 32 33 public class RunPublishTwo extends ExceptionListenerTest{ 34 35 public RunPublishTwo(String name) { 36 super(name); 37 38 } 39 40 public void runPublishTwo() throws Exception { 41 runPublish(); 42 runPublish(); 43 } 44 45 public static junit.framework.Test suite() throws Exception { 46 47 TestSuite suite= new TestSuite(); 48 suite.addTest(new RunPublishTwo("runPublishTwo")); 49 50 return suite; 51 } 52 public static void main(String [] args) { 53 54 } 55 56 } | Popular Tags |