1 18 package org.apache.activemq.usecases; 19 20 import javax.jms.ExceptionListener ; 21 import javax.jms.JMSException ; 22 23 import junit.framework.TestCase; 24 25 29 public class ExceptionListenerTest extends TestCase implements ExceptionListener { 30 boolean isException = false; 31 32 33 public ExceptionListenerTest(String arg) { 34 super(arg); 35 } 36 37 38 public void testOnException() throws Exception { 39 86 } 87 88 89 public void onException(JMSException e) { 90 isException = true; 91 } 92 } 93 | Popular Tags |