1 23 24 28 29 35 36 package com.sun.enterprise.admin.monitor.stats; 37 38 import javax.management.j2ee.statistics.BoundedRangeStatistic ; 39 import com.sun.enterprise.admin.monitor.stats.BoundedRangeStatisticImpl; 40 import javax.management.j2ee.statistics.Statistic ; 41 import junit.framework.*; 42 43 47 public class MutableBoundedRangeStatisticImplTest extends TestCase { 48 49 public MutableBoundedRangeStatisticImplTest(java.lang.String testName) { 50 super(testName); 51 } 52 53 public static Test suite() { 54 TestSuite suite = new TestSuite(MutableBoundedRangeStatisticImplTest.class); 55 return suite; 56 } 57 58 61 public void testReset() { 62 System.out.println("testReset"); 63 fail("The test case is empty."); 64 } 65 66 69 public void testSetCount() { 70 System.out.println("testSetCount"); 71 fail("The test case is empty."); 72 } 73 74 77 public void testUnmodifiableView() { 78 System.out.println("testUnmodifiableView"); 79 fail("The test case is empty."); 80 } 81 82 85 public void testGetDescription() { 86 System.out.println("testGetDescription"); 87 fail("The test case is empty."); 88 } 89 90 93 public void testGetLastSampleTime() { 94 System.out.println("testGetLastSampleTime"); 95 fail("The test case is empty."); 96 } 97 98 101 public void testGetName() { 102 System.out.println("testGetName"); 103 fail("The test case is empty."); 104 } 105 106 109 public void testGetStartTime() { 110 System.out.println("testGetStartTime"); 111 fail("The test case is empty."); 112 } 113 114 117 public void testGetUnit() { 118 System.out.println("testGetUnit"); 119 fail("The test case is empty."); 120 } 121 122 125 public void testModifiableView() { 126 System.out.println("testModifiableView"); 127 fail("The test case is empty."); 128 } 129 130 133 public void testGetCurrent() { 134 System.out.println("testGetCurrent"); 135 fail("The test case is empty."); 136 } 137 138 141 public void testGetHighWaterMark() { 142 System.out.println("testGetHighWaterMark"); 143 fail("The test case is empty."); 144 } 145 146 149 public void testGetLowWaterMark() { 150 System.out.println("testGetLowWaterMark"); 151 fail("The test case is empty."); 152 } 153 154 157 public void testGetLowerBound() { 158 System.out.println("testGetLowerBound"); 159 fail("The test case is empty."); 160 } 161 162 165 public void testGetUpperBound() { 166 System.out.println("testGetUpperBound"); 167 fail("The test case is empty."); 168 } 169 170 public static void main(java.lang.String [] args) { 171 junit.textui.TestRunner.run(suite()); 172 } 173 174 178 179 } 180 | Popular Tags |