1 23 24 28 29 35 36 package com.sun.enterprise.admin.monitor.stats; 37 38 import javax.management.j2ee.statistics.CountStatistic ; 39 import com.sun.enterprise.admin.monitor.stats.CountStatisticImpl; 40 import javax.management.j2ee.statistics.Statistic ; 41 import junit.framework.*; 42 43 47 public class MutableCountStatisticImplTest extends TestCase { 48 49 public MutableCountStatisticImplTest(java.lang.String testName) { 50 super(testName); 51 } 52 53 public static Test suite() { 54 TestSuite suite = new TestSuite(MutableCountStatisticImplTest.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 testGetLastSampleTime() { 86 System.out.println("testGetLastSampleTime"); 87 fail("The test case is empty."); 88 } 89 90 93 public void testGetStartTime() { 94 System.out.println("testGetStartTime"); 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 testGetDescription() { 110 System.out.println("testGetDescription"); 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 testGetCount() { 134 System.out.println("testGetCount"); 135 fail("The test case is empty."); 136 } 137 138 public static void main(java.lang.String [] args) { 139 junit.textui.TestRunner.run(suite()); 140 } 141 142 146 147 } 148 | Popular Tags |