1 23 24 28 29 35 36 package com.sun.enterprise.admin.monitor.stats; 37 38 import javax.management.j2ee.statistics.Statistic ; 39 import java.io.Serializable ; 40 import junit.framework.*; 41 42 46 public class StatisticImplTest extends TestCase { 47 48 public StatisticImplTest(java.lang.String testName) { 49 super(testName); 50 } 51 52 public static Test suite() { 53 TestSuite suite = new TestSuite(StatisticImplTest.class); 54 return suite; 55 } 56 57 60 public void testGetName() { 61 System.out.println("testGetName"); 62 fail("The test case is empty."); 63 } 64 65 68 public void testGetDescription() { 69 System.out.println("testGetDescription"); 70 fail("The test case is empty."); 71 } 72 73 76 public void testGetUnit() { 77 System.out.println("testGetUnit"); 78 fail("The test case is empty."); 79 } 80 81 84 public void testGetLastSampleTime() { 85 System.out.println("testGetLastSampleTime"); 86 fail("The test case is empty."); 87 } 88 89 92 public void testGetStartTime() { 93 System.out.println("testGetStartTime"); 94 fail("The test case is empty."); 95 } 96 97 public static void main(java.lang.String [] args) { 98 junit.textui.TestRunner.run(suite()); 99 } 100 101 105 106 } 107 | Popular Tags |