1 23 24 30 31 package com.sun.enterprise.admin.monitor.registry.spi; 32 33 import com.sun.enterprise.admin.monitor.registry.*; 34 import javax.management.j2ee.statistics.*; 35 import javax.management.*; 36 import java.util.ArrayList ; 37 import java.util.Hashtable ; 38 import java.util.Enumeration ; 39 import java.util.Collection ; 40 import java.util.logging.*; 41 import com.sun.enterprise.admin.common.constant.AdminConstants; 42 import com.sun.enterprise.util.i18n.StringManager; 43 import junit.framework.*; 44 45 49 public class StatsHolderImplTest extends TestCase { 50 51 public StatsHolderImplTest(java.lang.String testName) { 52 super(testName); 53 } 54 55 public static Test suite() { 56 TestSuite suite = new TestSuite(StatsHolderImplTest.class); 57 return suite; 58 } 59 60 63 public void testAddChild() { 64 System.out.println("testAddChild"); 65 fail("The test case is empty."); 66 } 67 68 71 public void testGetAllChildren() { 72 System.out.println("testGetAllChildren"); 73 fail("The test case is empty."); 74 } 75 76 79 public void testRemoveAllChildren() { 80 System.out.println("testRemoveAllChildren"); 81 fail("The test case is empty."); 82 } 83 84 87 public void testRemoveChild() { 88 System.out.println("testRemoveChild"); 89 fail("The test case is empty."); 90 } 91 92 95 public void testGetName() { 96 System.out.println("testGetName"); 97 fail("The test case is empty."); 98 } 99 100 103 public void testGetType() { 104 System.out.println("testGetType"); 105 fail("The test case is empty."); 106 } 107 108 111 public void testSetStats() { 112 System.out.println("testSetStats"); 113 fail("The test case is empty."); 114 } 115 116 119 public void testGetStats() { 120 System.out.println("testGetStats"); 121 fail("The test case is empty."); 122 } 123 124 127 public void testSetObjectName() { 128 System.out.println("testSetObjectName"); 129 fail("The test case is empty."); 130 } 131 132 135 public void testGetObjectName() { 136 System.out.println("testGetObjectName"); 137 fail("The test case is empty."); 138 } 139 140 143 public void testSetDottedName() { 144 System.out.println("testSetDottedName"); 145 fail("The test case is empty."); 146 } 147 148 151 public void testGetDottedName() { 152 System.out.println("testGetDottedName"); 153 fail("The test case is empty."); 154 } 155 156 159 public void testRegisterMBean() { 160 System.out.println("testRegisterMBean"); 161 fail("The test case is empty."); 162 } 163 164 167 public void testUnregisterMBean() { 168 System.out.println("testUnregisterMBean"); 169 fail("The test case is empty."); 170 } 171 172 175 public void testSetType() { 176 System.out.println("testSetType"); 177 fail("The test case is empty."); 178 } 179 180 183 public void testGetChild() { 184 System.out.println("testGetChild"); 185 fail("The test case is empty."); 186 } 187 188 191 public void testWrite() { 192 System.out.println("testWrite"); 193 fail("The test case is empty."); 194 } 195 196 199 public void testGetStatsClass() { 200 System.out.println("testGetStatsClass"); 201 fail("The test case is empty."); 202 } 203 204 207 public void testSetStatsClass() { 208 System.out.println("testSetStatsClass"); 209 fail("The test case is empty."); 210 } 211 212 public static void main(java.lang.String [] args) { 213 junit.textui.TestRunner.run(suite()); 214 } 215 216 220 221 } 222 | Popular Tags |