1 22 package org.jboss.test.jbossmq.test; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 import org.jboss.test.JBossTestSetup; 28 29 30 33 public class UIL2JBossMQUnitTestCase 34 extends JBossMQUnitTest 35 { 36 public UIL2JBossMQUnitTestCase(String name) throws Exception 37 { 38 super(name); 39 } 40 41 public static Test suite() throws Exception 42 { 43 TestSuite suite = new TestSuite(); 44 45 suite.addTest(new JBossTestSetup(new TestSuite(UIL2JBossMQUnitTestCase.class)) 46 { 47 protected void setUp() throws Exception 48 { 49 this.getLog().info("UIL2JBossMQUnitTestCase started"); 50 ClassLoader loader = Thread.currentThread().getContextClassLoader(); 51 deploy (loader.getResource("messaging/test-destinations-service.xml").toString()); 52 JBossMQUnitTest.TOPIC_FACTORY = "UIL2ConnectionFactory"; 53 JBossMQUnitTest.QUEUE_FACTORY = "UIL2ConnectionFactory"; 54 } 55 protected void tearDown() throws Exception 56 { 57 ClassLoader loader = Thread.currentThread().getContextClassLoader(); 58 undeploy (loader.getResource("messaging/test-destinations-service.xml").toString()); 59 this.getLog().info("UIL2JBossMQUnitTestCase done"); 60 } 61 }); 62 63 return suite; 64 } 65 66 static public void main( String []args ) 67 { 68 String newArgs[] = { "org.jboss.test.jbossmq.test.UIL2JBossMQUnitTestCase" }; 69 junit.swingui.TestRunner.main(newArgs); 70 } 71 } 72 | Popular Tags |