1 /* 2 * @(#)MessagePropertiesTest.java 3 * 4 * JFoxMQ the open source JMS MOM. 5 * 6 * Corpyright 2002-2003 Huihoo Power, Inc. All Rights Reserved. This software 7 * is licensed under LGPL license. 8 * 9 * For more information, please visit: http://www.huihoo.org 10 */ 11 12 package org.huihoo.jfox.ms.jms.message; 13 14 import junit.framework.TestCase; 15 16 /*** 17 * <p> 18 * JUnit test case for the 19 * {@link org.huihoo.jfoxms.jms.message.MessageProperties). 20 * </p> 21 * 22 * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter.Cheng</a> 23 * @version Revision: 1.1 Date: 2002-11-24 22:23:33 24 */ 25 26 public class MessagePropertiesTest extends TestCase { 27 28 /*** 29 * Constructor for MessagePropertiesTest. 30 * 31 * @param arg0 32 */ 33 public MessagePropertiesTest(String arg0) { 34 super(arg0); 35 } 36 37 public static void main(String[] args) { 38 junit.textui.TestRunner.run(MessagePropertiesTest.class); 39 } 40 41 /*** 42 * @see TestCase#setUp() 43 */ 44 protected void setUp() throws Exception { 45 super.setUp(); 46 } 47 48 public void testSetBooleanProperty() { 49 // TODO 50 } 51 52 public void testGetBooleanProperty() { 53 // TODO 54 } 55 56 public void testSetByteProperty() { 57 // TODO 58 } 59 60 public void testGetByteProperty() { 61 // TODO 62 } 63 64 public void testSetShortProperty() { 65 // TODO 66 } 67 68 public void testGetShortProperty() { 69 // TODO 70 } 71 72 public void testSetIntProperty() { 73 // TODO 74 } 75 76 public void testGetIntProperty() { 77 // TODO 78 } 79 80 public void testSetLongProperty() { 81 // TODO 82 } 83 84 public void testGetLongProperty() { 85 // TODO 86 } 87 88 public void testSetFloatProperty() { 89 // TODO 90 } 91 92 public void testGetFloatProperty() { 93 // TODO 94 } 95 96 public void testSetDoubleProperty() { 97 // TODO 98 } 99 100 public void testGetDoubleProperty() { 101 // TODO 102 } 103 104 public void testSetStringProperty() { 105 // TODO 106 } 107 108 public void testGetStringProperty() { 109 // TODO 110 } 111 112 public void testSetObjectProperty() { 113 // TODO 114 } 115 116 public void testGetObjectProperty() { 117 // TODO 118 } 119 120 }

This page was automatically generated by Maven