1 23 24 30 31 package com.sun.enterprise.admin.monitor.jndi; 32 33 import com.sun.enterprise.admin.common.constant.AdminConstants; 34 import com.sun.enterprise.util.i18n.StringManager; 35 import java.lang.reflect.InvocationTargetException ; 36 import java.lang.reflect.Method ; 37 import java.util.logging.Level ; 38 import java.util.logging.Logger ; 39 import javax.management.AttributeList ; 40 import javax.management.AttributeNotFoundException ; 41 import javax.management.InvalidAttributeValueException ; 42 import javax.management.MBeanException ; 43 import javax.management.MBeanInfo ; 44 import javax.management.MBeanOperationInfo ; 45 import javax.management.MBeanParameterInfo ; 46 import javax.management.ReflectionException ; 47 import javax.naming.NameClassPair ; 48 import javax.naming.NamingException ; 49 import junit.framework.*; 50 51 55 public class JndiMBeanImplTest extends TestCase { 56 57 public JndiMBeanImplTest(java.lang.String testName) { 58 super(testName); 59 } 60 61 public static Test suite() { 62 TestSuite suite = new TestSuite(JndiMBeanImplTest.class); 63 return suite; 64 } 65 66 69 public void testInitialize() { 70 System.out.println("testInitialize"); 71 fail("The test case is empty."); 72 } 73 74 77 public void testGetAttribute() { 78 System.out.println("testGetAttribute"); 79 fail("The test case is empty."); 80 } 81 82 85 public void testGetAttributes() { 86 System.out.println("testGetAttributes"); 87 fail("The test case is empty."); 88 } 89 90 93 public void testGetMBeanInfo() { 94 System.out.println("testGetMBeanInfo"); 95 fail("The test case is empty."); 96 } 97 98 101 public void testGetOperationInfo() { 102 System.out.println("testGetOperationInfo"); 103 fail("The test case is empty."); 104 } 105 106 109 public void testCreateOperationInfo() { 110 System.out.println("testCreateOperationInfo"); 111 fail("The test case is empty."); 112 } 113 114 117 public void testGetParameterInfo() { 118 System.out.println("testGetParameterInfo"); 119 fail("The test case is empty."); 120 } 121 122 125 public void testIsAttrGetterOrSetter() { 126 System.out.println("testIsAttrGetterOrSetter"); 127 fail("The test case is empty."); 128 } 129 130 133 public void testInvoke() { 134 System.out.println("testInvoke"); 135 fail("The test case is empty."); 136 } 137 138 141 public void testSetAttribute() { 142 System.out.println("testSetAttribute"); 143 fail("The test case is empty."); 144 } 145 146 149 public void testSetAttributes() { 150 System.out.println("testSetAttributes"); 151 fail("The test case is empty."); 152 } 153 154 157 public void testGetNames() { 158 System.out.println("testGetNames"); 159 fail("The test case is empty."); 160 } 161 162 public static void main(java.lang.String [] args) { 163 junit.textui.TestRunner.run(suite()); 164 } 165 166 170 171 } 172 | Popular Tags |