1 23 24 28 29 35 36 package com.sun.enterprise.admin.monitor.stats; 37 38 import javax.management.j2ee.statistics.BoundaryStatistic ; 39 import junit.framework.*; 40 41 45 public class BoundaryStatisticImplTest extends TestCase { 46 47 public BoundaryStatisticImplTest(java.lang.String testName) { 48 super(testName); 49 } 50 51 public static Test suite() { 52 TestSuite suite = new TestSuite(BoundaryStatisticImplTest.class); 53 return suite; 54 } 55 56 59 public void testGetLowerBound() { 60 System.out.println("testGetLowerBound"); 61 fail("The test case is empty."); 62 } 63 64 67 public void testGetUpperBound() { 68 System.out.println("testGetUpperBound"); 69 fail("The test case is empty."); 70 } 71 72 public static void main(java.lang.String [] args) { 73 junit.textui.TestRunner.run(suite()); 74 } 75 76 80 81 } 82 | Popular Tags |