1 23 24 28 29 35 36 package com.sun.enterprise.admin.monitor.stats; 37 38 import javax.management.j2ee.statistics.TimeStatistic ; 39 import junit.framework.*; 40 41 45 public class TimeStatisticImplTest extends TestCase { 46 47 public TimeStatisticImplTest(java.lang.String testName) { 48 super(testName); 49 } 50 51 public static Test suite() { 52 TestSuite suite = new TestSuite(TimeStatisticImplTest.class); 53 return suite; 54 } 55 56 59 public void testGetCount() { 60 System.out.println("testGetCount"); 61 fail("The test case is empty."); 62 } 63 64 67 public void testGetMaxTime() { 68 System.out.println("testGetMaxTime"); 69 fail("The test case is empty."); 70 } 71 72 75 public void testGetMinTime() { 76 System.out.println("testGetMinTime"); 77 fail("The test case is empty."); 78 } 79 80 83 public void testGetTotalTime() { 84 System.out.println("testGetTotalTime"); 85 fail("The test case is empty."); 86 } 87 88 public static void main(java.lang.String [] args) { 89 junit.textui.TestRunner.run(suite()); 90 } 91 92 96 97 } 98 | Popular Tags |