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