01: package org.mockejb.jms.test;
02:
03: import junit.framework.TestCase;
04: import javax.jms.*;
05:
06: /**
07: * Tests sending messages to a <code>Topic</code>.
08: *
09: * @author Dimitar Gospodinov
10: */
11: public class TopicTest extends TestCase {
12:
13: public TopicTest(String name) {
14: super (name);
15: }
16:
17: public void testTopic() throws JMSException {
18:
19: }
20:
21: }
|